mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
Remove trailing ';' on macros.
Spotted by: antoine
This commit is contained in:
parent
1dabcd56c6
commit
9371f06305
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=177285
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user