Changeset 2171 for libswish3/trunk/src/libswish3/mem.c
- Timestamp:
- 09/22/08 00:08:00 (4 months ago)
- Files:
-
- libswish3/trunk/src/libswish3/mem.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libswish3/trunk/src/libswish3/mem.c
r2133 r2171 38 38 { 39 39 memcount = 0; 40 } 40 41 42 long int 43 swish_get_memcount( 44 ) 45 { 46 return memcount; 41 47 } 42 48 … … 136 142 if (memcount > 0) 137 143 SWISH_WARN 138 (" memory error:%ld more swish_xmalloc()s or swish_xstrdup()s than swish_xfree()s",144 ("%ld more swish_xmalloc()s or swish_xstrdup()s than swish_xfree()s", 139 145 memcount); 140 146 141 147 if (memcount < 0) 142 SWISH_WARN(" memory error:too many swish_xfree()s %d", memcount);148 SWISH_WARN("too many swish_xfree()s %d", memcount); 143 149 }
