mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-18 22:17:39 +00:00
Fix missed invalid specifier in PSA Crypto build
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
48438c758a
commit
61d2209e42
|
@ -1667,7 +1667,7 @@ int main( int argc, char *argv[] )
|
||||||
PSA_ALG_SHA_256 ) ) != 0 )
|
PSA_ALG_SHA_256 ) ) != 0 )
|
||||||
{
|
{
|
||||||
mbedtls_printf( " failed\n ! "
|
mbedtls_printf( " failed\n ! "
|
||||||
"mbedtls_pk_wrap_as_opaque returned -0x%x\n\n", -ret );
|
"mbedtls_pk_wrap_as_opaque returned -0x%x\n\n", (unsigned int) -ret );
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue