From: Kim Nguyẽn Date: Tue, 23 Oct 2012 11:49:15 +0000 (+0200) Subject: Silence a printf warning for %lu on 32bits archs. X-Git-Url: http://git.nguyen.vg/gitweb/?p=SXSI%2Flibbp.git;a=commitdiff_plain;h=HEAD Silence a printf warning for %lu on 32bits archs. --- diff --git a/bp-utils.c b/bp-utils.c index 0fc7a42..48b3fee 100644 --- a/bp-utils.c +++ b/bp-utils.c @@ -28,7 +28,7 @@ void * bp_malloc(size_t n) { void * res = malloc(n); if (!res) { - fprintf(stderr, __FILE__ ": failure to allocate %lu bytes\n", n); + fprintf(stderr, __FILE__ ": failure to allocate %lu bytes\n", (long unsigned int) n); exit(1); }; allocated += n;