mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-12 07:55:29 +00:00
Fix printf format specifier
Also mark function as printf variant so compiler will pickup any future issues. Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
110afd0e4d
commit
8f20bab14d
|
@ -22,6 +22,7 @@
|
|||
#else
|
||||
#include MBEDTLS_CONFIG_FILE
|
||||
#endif
|
||||
#include "mbedtls/debug.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -164,6 +165,7 @@ void printf_dbg( const char *str, ... )
|
|||
}
|
||||
}
|
||||
|
||||
MBEDTLS_PRINTF_ATTRIBUTE( 1, 2 )
|
||||
void printf_err( const char *str, ... )
|
||||
{
|
||||
va_list args;
|
||||
|
@ -470,7 +472,8 @@ size_t read_next_b64_code( uint8_t **b64, size_t *max_len )
|
|||
}
|
||||
else if( len > *max_len )
|
||||
{
|
||||
printf_err( "The code found is too large by %u bytes.\n", len - *max_len );
|
||||
printf_err( "The code found is too large by %" MBEDTLS_PRINTF_SIZET " bytes.\n",
|
||||
len - *max_len );
|
||||
len = pad = 0;
|
||||
}
|
||||
else if( len % 4 != 0 )
|
||||
|
|
Loading…
Reference in a new issue