The following commit has been merged in the master branch: commit 8569736df51828f39a44ad7e32cb0c550071a573 Author: Mirko Vogt datenmaulwurf@nanl.de Date: Wed Dec 20 21:21:18 2006 +0100
fix warning in allocate.c
diff --git a/allocate.c b/allocate.c index 4f3ad4d..8977d34 100644 --- a/allocate.c +++ b/allocate.c @@ -72,7 +72,7 @@ void *debugMalloc(unsigned int length, int tag)
if (memory == NULL) { - fprintf(stderr, "Cannot allocate %u bytes, tag = %d\n", length + sizeof(struct chunkHeader) + sizeof(struct chunkTrailer), tag); + fprintf(stderr, "Cannot allocate %u bytes, tag = %d\n", (unsigned int)(length + sizeof(struct chunkHeader) + sizeof(struct chunkTrailer)), tag); exit(1); }