Changeset 392 for branches/1.2/xc_malloc.c
- Timestamp:
- 05/23/2007 01:04:03 AM (19 months ago)
- Location:
- branches/1.2
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
xc_malloc.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2
- Property svnmerge-integrated changed from /trunk:1-302,344-346,371,374-375,388 to /trunk:1-302,344-346,371,374-375,388,391
-
branches/1.2/xc_malloc.c
r380 r392 90 90 /* requires at least the header and 1 tail block */ 91 91 if (size < MINSIZE) { 92 fprintf(stderr, "xc_mem_malloc_init requires % d bytes at least\n",MINSIZE);92 fprintf(stderr, "xc_mem_malloc_init requires %lu bytes at least\n", (unsigned long) MINSIZE); 93 93 return NULL; 94 94 }

