diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2008-03-16 23:00:43 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2008-03-16 23:00:43 +0000 |
| commit | 9371f0630551e56c3c1ea69a567d5ecd85e5ebf4 (patch) | |
| tree | dbc5c3205c525f37ee5b110ff3bd4c99563bff3b | |
| parent | 1dabcd56c6becdb487e60b31d5c9a1894028feab (diff) | |
Notes
| -rw-r--r-- | usr.sbin/fifolog/lib/miniobj.h | 4 |
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) |
