Skip to content
This repository has been archived by the owner on Jul 30, 2021. It is now read-only.

Commit

Permalink
Fix printf format error
Browse files Browse the repository at this point in the history
git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@752 d4fa192b-c00b-0410-8231-f00ffab90ce4
  • Loading branch information
bsdphk committed Aug 7, 2006
1 parent 9249b95 commit 672ae9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/libvarnish/assert.c
Expand Up @@ -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();
Expand Down

0 comments on commit 672ae9e

Please sign in to comment.