- print error string in useful format

This commit is contained in:
Paul Bakker 2012-04-10 08:22:46 +00:00
parent 398cb514e2
commit 570267f01a

View file

@ -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