Remove trailing ';' on macros.

Spotted by:	antoine
This commit is contained in:
Poul-Henning Kamp 2008-03-16 23:00:43 +00:00
parent 1dabcd56c6
commit 9371f06305
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=177285

View File

@ -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)