summaryrefslogtreecommitdiffstats
path: root/crypto/dh
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-12 09:52:44 +0000
committerBodo Möller <bodo@openssl.org>1999-06-12 09:52:44 +0000
commite0f12c41de7f0de97842802936608d0b7b66c9cb (patch)
tree6371f4a53dade85d26a535e3b70bfffc0c67cb6a /crypto/dh
parent5b5dd0c05714d540875f62378997dc816facb082 (diff)
Avoid some warnings (on silly compilers).
Diffstat (limited to 'crypto/dh')
-rw-r--r--crypto/dh/dhtest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dh/dhtest.c b/crypto/dh/dhtest.c
index a3f4692eca..770331971f 100644
--- a/crypto/dh/dhtest.c
+++ b/crypto/dh/dhtest.c
@@ -180,7 +180,7 @@ static void MS_CALLBACK cb(int p, int n, void *arg)
if (p == 2) c='*';
if (p == 3) c='\n';
BIO_write((BIO *)arg,&c,1);
- BIO_flush((BIO *)arg);
+ (void)BIO_flush((BIO *)arg);
#ifdef LINT
p=n;
#endif