mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 19:25:28 +00:00
Fix minor format string inconsistency.
This commit is contained in:
parent
c2bbac968b
commit
8ebfe084ab
|
@ -131,7 +131,7 @@ void debug_print_buf( const ssl_context *ssl, int level,
|
||||||
if( debug_log_mode == POLARSSL_DEBUG_LOG_FULL )
|
if( debug_log_mode == POLARSSL_DEBUG_LOG_FULL )
|
||||||
idx = snprintf( str, maxlen, "%s(%04d): ", file, line );
|
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 );
|
text, (unsigned int) len );
|
||||||
|
|
||||||
str[maxlen] = '\0';
|
str[maxlen] = '\0';
|
||||||
|
|
Loading…
Reference in a new issue