mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-02-06 21:34:08 +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 )
|
||||
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';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user