mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Remove trailing ';' on macros.
Spotted by: antoine
This commit is contained in:
parent
1dabcd56c6
commit
9371f06305
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue