summaryrefslogtreecommitdiffstats
path: root/apps/dsaparam.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-10 16:29:32 +0000
committerBodo Möller <bodo@openssl.org>1999-06-10 16:29:32 +0000
commitd58d092bc9f0a541ce5f0b265ee819f7ab086560 (patch)
tree497575b6ed095b6672e9f17ffb3f20223d3b6b36 /apps/dsaparam.c
parent9d9b559ef03e481d2feec5a3a9a28f4a41f8189a (diff)
Avoid warnings.
Diffstat (limited to 'apps/dsaparam.c')
-rw-r--r--apps/dsaparam.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dsaparam.c b/apps/dsaparam.c
index 118d974bb0..be653a3465 100644
--- a/apps/dsaparam.c
+++ b/apps/dsaparam.c
@@ -345,7 +345,7 @@ static void MS_CALLBACK dsa_cb(int p, int n, char *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