Browse Source

- removed some extra ';' from the malloc debugging macro definitions

Andrei Pelinescu-Onciul 22 years ago
parent
commit
a768ee683c
1 changed files with 4 additions and 4 deletions
  1. 4 4
      mem/mem.h

+ 4 - 4
mem/mem.h

@@ -66,14 +66,14 @@
 				__FUNCTION__, __LINE__)
 				__FUNCTION__, __LINE__)
 #		elif defined F_MALLOC
 #		elif defined F_MALLOC
 #			define pkg_malloc(s) fm_malloc(mem_block, (s),__FILE__, \
 #			define pkg_malloc(s) fm_malloc(mem_block, (s),__FILE__, \
-				__FUNCTION__, __LINE__);
+				__FUNCTION__, __LINE__)
 #			define pkg_free(p)   fm_free(mem_block, (p), __FILE__,  \
 #			define pkg_free(p)   fm_free(mem_block, (p), __FILE__,  \
-				__FUNCTION__, __LINE__);
+				__FUNCTION__, __LINE__)
 #		else
 #		else
 #			define pkg_malloc(s) qm_malloc(mem_block, (s),__FILE__, \
 #			define pkg_malloc(s) qm_malloc(mem_block, (s),__FILE__, \
-				__FUNCTION__, __LINE__);
+				__FUNCTION__, __LINE__)
 #			define pkg_free(p)   qm_free(mem_block, (p), __FILE__,  \
 #			define pkg_free(p)   qm_free(mem_block, (p), __FILE__,  \
-				__FUNCTION__, __LINE__);
+				__FUNCTION__, __LINE__)
 #		endif
 #		endif
 #	else
 #	else
 #		ifdef VQ_MALLOC
 #		ifdef VQ_MALLOC