mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-04 12:20:42 +09:00
Fix build warning.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@514 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
@@ -160,7 +160,7 @@ void ssh_print_bignum(const char *which, bignum num) {
|
||||
hex = bignum_bn2hex(num);
|
||||
#endif
|
||||
fprintf(stderr, "%s value: ", which);
|
||||
fprintf(stderr,"%s\n", hex == NULL ? "(null)" : hex);
|
||||
fprintf(stderr, "%s\n", (hex == NULL) ? "(null)" : (char *) hex);
|
||||
SAFE_FREE(hex);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user