commit | 02388c918dd451cd7c45ab8728c281b4bb8714b4 | [log] [tgz] |
---|---|---|
author | Peter Vaskovic <petervas@users.noreply.github.com> | Sat May 24 15:19:35 2014 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Tue Jul 08 18:28:48 2014 +0200 |
tree | ee5b1039279086ec9b2125618ba46793b99cea51 | |
parent | 75ee01097fd7ee4323d4b6429f40180d4aba6a7a [diff] [blame] |
Fix minor format string inconsistency.
diff --git a/library/debug.c b/library/debug.c index 3e2466a..2008262 100644 --- a/library/debug.c +++ b/library/debug.c
@@ -95,7 +95,7 @@ if( ssl->f_dbg == NULL ) return; - snprintf( str, maxlen, "%s(%04d): dumping '%s' (%d bytes)\n", + snprintf( str, maxlen, "%s(%04d): dumping '%s' (%u bytes)\n", file, line, text, (unsigned int) len ); str[maxlen] = '\0';