Commit 4f9d45bc authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

remove undesired semicolons

parent 856d6068
......@@ -44,14 +44,14 @@
(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)
#define REPLACE(ptr, val) \
do { \
......@@ -63,4 +63,4 @@
} else { \
ptr = NULL; \
} \
} while (0);
} while (0)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment