From 9371f0630551e56c3c1ea69a567d5ecd85e5ebf4 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sun, 16 Mar 2008 23:00:43 +0000 Subject: [PATCH] Remove trailing ';' on macros. Spotted by: antoine --- usr.sbin/fifolog/lib/miniobj.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/fifolog/lib/miniobj.h b/usr.sbin/fifolog/lib/miniobj.h index 38a907e68d2..a8053166886 100644 --- a/usr.sbin/fifolog/lib/miniobj.h +++ b/usr.sbin/fifolog/lib/miniobj.h @@ -55,12 +55,12 @@ (to) = (from); \ if ((to) != NULL) \ CHECK_OBJ((to), (type_magic)); \ - } while (0); + } while (0) #define CAST_OBJ_NOTNULL(to, from, type_magic) \ do { \ (to) = (from); \ assert((to) != NULL); \ CHECK_OBJ((to), (type_magic)); \ - } while (0); + } while (0)