summaryrefslogtreecommitdiffstats
path: root/crypto/dh/dh_prn.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/dh/dh_prn.c')
-rw-r--r--crypto/dh/dh_prn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/dh/dh_prn.c b/crypto/dh/dh_prn.c
index 283fb0f4a3..aab1733db3 100644
--- a/crypto/dh/dh_prn.c
+++ b/crypto/dh/dh_prn.c
@@ -20,11 +20,11 @@ int DHparams_print_fp(FILE *fp, const DH *x)
if ((b = BIO_new(BIO_s_file())) == NULL) {
DHerr(DH_F_DHPARAMS_PRINT_FP, ERR_R_BUF_LIB);
- return (0);
+ return 0;
}
BIO_set_fp(b, fp, BIO_NOCLOSE);
ret = DHparams_print(b, x);
BIO_free(b);
- return (ret);
+ return ret;
}
#endif