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

remove undesired semicolons

parent 856d6068
...@@ -44,14 +44,14 @@ ...@@ -44,14 +44,14 @@
(to) = (from); \ (to) = (from); \
if ((to) != NULL) \ if ((to) != NULL) \
CHECK_OBJ((to), (type_magic)); \ CHECK_OBJ((to), (type_magic)); \
} while (0); } while (0)
#define CAST_OBJ_NOTNULL(to, from, type_magic) \ #define CAST_OBJ_NOTNULL(to, from, type_magic) \
do { \ do { \
(to) = (from); \ (to) = (from); \
assert((to) != NULL); \ assert((to) != NULL); \
CHECK_OBJ((to), (type_magic)); \ CHECK_OBJ((to), (type_magic)); \
} while (0); } while (0)
#define REPLACE(ptr, val) \ #define REPLACE(ptr, val) \
do { \ do { \
...@@ -63,4 +63,4 @@ ...@@ -63,4 +63,4 @@
} else { \ } else { \
ptr = NULL; \ 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