Fix minor format string inconsistency.

This commit is contained in:
Peter Vaskovic 2014-05-24 15:19:35 +02:00 committed by Paul Bakker
parent 75ee01097f
commit 02388c918d

View file

@ -95,7 +95,7 @@ void debug_print_buf( const ssl_context *ssl, int level,
if( ssl->f_dbg == NULL ) if( ssl->f_dbg == NULL )
return; 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 ); file, line, text, (unsigned int) len );
str[maxlen] = '\0'; str[maxlen] = '\0';