summaryrefslogtreecommitdiff
path: root/src/common/malloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/malloc.h')
-rw-r--r--src/common/malloc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/malloc.h b/src/common/malloc.h
index d6f6adb3c..2cef33982 100644
--- a/src/common/malloc.h
+++ b/src/common/malloc.h
@@ -145,11 +145,11 @@
////////////// Others //////////////////////////
// should be merged with any of above later
-#define CREATE(result, type, number) (result) = (type *) aCalloc ((number), sizeof(type));
+#define CREATE(result, type, number) (result) = (type *) aCalloc ((number), sizeof(type))
-#define CREATE_A(result, type, number) (result) = (type *) aCallocA ((number), sizeof(type));
+#define CREATE_A(result, type, number) (result) = (type *) aCallocA ((number), sizeof(type))
-#define RECREATE(result, type, number) (result) = (type *) aRealloc ((result), sizeof(type) * (number));
+#define RECREATE(result, type, number) (result) = (type *) aRealloc ((result), sizeof(type) * (number))
////////////////////////////////////////////////