Browse Source

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

Andrei Pelinescu-Onciul 22 năm trước cách đây
mục cha
commit
a768ee683c
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      mem/mem.h

+ 4 - 4
mem/mem.h

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