Commit 672ae9e6 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix printf format error


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@752 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 9249b95a
......@@ -14,7 +14,7 @@ lbv_assert(const char *func, const char *file, int line, const char *cond, int e
{
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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment