aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/fifolog
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2008-03-16 23:00:43 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2008-03-16 23:00:43 +0000
commit9371f0630551e56c3c1ea69a567d5ecd85e5ebf4 (patch)
treedbc5c3205c525f37ee5b110ff3bd4c99563bff3b /usr.sbin/fifolog
parent1dabcd56c6becdb487e60b31d5c9a1894028feab (diff)
downloadsrc-9371f0630551e56c3c1ea69a567d5ecd85e5ebf4.tar.gz
src-9371f0630551e56c3c1ea69a567d5ecd85e5ebf4.zip
Remove trailing ';' on macros.
Spotted by: antoine
Notes
Notes: svn path=/head/; revision=177285
Diffstat (limited to 'usr.sbin/fifolog')
-rw-r--r--usr.sbin/fifolog/lib/miniobj.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/fifolog/lib/miniobj.h b/usr.sbin/fifolog/lib/miniobj.h
index 38a907e68d22..a8053166886c 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)