mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-24 11:56:53 +00:00
- print error string in useful format
This commit is contained in:
parent
398cb514e2
commit
570267f01a
|
@ -478,7 +478,7 @@ exit:
|
||||||
{
|
{
|
||||||
char error_buf[100];
|
char error_buf[100];
|
||||||
error_strerror( ret, error_buf, 100 );
|
error_strerror( ret, error_buf, 100 );
|
||||||
printf("Last error was: %d - %s\n\n", ret, error_buf );
|
printf("Last error was: -0x%X - %s\n\n", -ret, error_buf );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue