From: Niels Provos Date: Wed, 30 Apr 2008 04:36:26 +0000 (+0000) Subject: fix missing printf format argument X-Git-Tag: release-2.0.1-alpha~345 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d76cca72736a0918221506c64d76124e65a71f1a;p=libevent fix missing printf format argument svn:r752 --- diff --git a/test/regress_zlib.c b/test/regress_zlib.c index 189cebe9..9455bc67 100644 --- a/test/regress_zlib.c +++ b/test/regress_zlib.c @@ -257,7 +257,7 @@ test_bufferevent_zlib(void) bufferevent_free(bev2); if (test_ok != 5) { - fprintf(stdout, "FAILED: \n", test_ok); + fprintf(stdout, "FAILED: %d\n", test_ok); exit(1); }