Explorar o código

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

Andrei Pelinescu-Onciul %!s(int64=22) %!d(string=hai) anos
pai
achega
a768ee683c
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  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