r752 - trunk/varnish-cache/lib/libvarnish

phk at projects.linpro.no phk at projects.linpro.no
Mon Aug 7 23:01:09 CEST 2006


Author: phk
Date: 2006-08-07 23:01:09 +0200 (Mon, 07 Aug 2006)
New Revision: 752

Modified:
   trunk/varnish-cache/lib/libvarnish/assert.c
Log:
Fix printf format error


Modified: trunk/varnish-cache/lib/libvarnish/assert.c
===================================================================
--- trunk/varnish-cache/lib/libvarnish/assert.c	2006-08-07 20:50:05 UTC (rev 751)
+++ trunk/varnish-cache/lib/libvarnish/assert.c	2006-08-07 21:01:09 UTC (rev 752)
@@ -14,7 +14,7 @@
 {
 
 	fprintf(stderr,
-	    "Assert error in %s(), %s line %s:\n"
+	    "Assert error in %s(), %s line %d:\n"
 	    "  Condition(%s) not true.\n"
 	    "  errno = %d (%s)\n", func, file, line, cond, err, strerror(err));
 	abort();




More information about the varnish-commit mailing list