mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 15:35:34 +00:00
Fix minor format string inconsistency.
This commit is contained in:
parent
75ee01097f
commit
02388c918d
|
@ -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';
|
||||||
|
|
Loading…
Reference in a new issue