1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

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 c2bbac968b
commit 8ebfe084ab

View File

@ -131,7 +131,7 @@ void debug_print_buf( const ssl_context *ssl, int level,
if( debug_log_mode == POLARSSL_DEBUG_LOG_FULL )
idx = snprintf( str, maxlen, "%s(%04d): ", file, line );
snprintf( str + idx, maxlen - idx, "dumping '%s' (%d bytes)\n",
snprintf( str + idx, maxlen - idx, "dumping '%s' (%u bytes)\n",
text, (unsigned int) len );
str[maxlen] = '\0';