]> git.proxmox.com Git - mirror_frr.git/blobdiff - fpm/fpm.h
*: Replace `sizeof something` to sizeof(something)
[mirror_frr.git] / fpm / fpm.h
index f73ab7c66f2d5749455e221d74cf0888a2ebc92d..0da8a5a8bef43cf8f82926dac3a7b36215eed031 100644 (file)
--- a/fpm/fpm.h
+++ b/fpm/fpm.h
@@ -175,7 +175,7 @@ static inline size_t fpm_msg_align(size_t len)
  * The (rounded up) size of the FPM message header. This ensures that
  * the message payload always starts at an aligned address.
  */
-#define FPM_MSG_HDR_LEN (sizeof (fpm_msg_hdr_t))
+#define FPM_MSG_HDR_LEN (sizeof(fpm_msg_hdr_t))
 
 #ifndef COMPILE_ASSERT
 #define COMPILE_ASSERT(x) extern int __dummy[2 * !!(x) - 1]