summaryrefslogtreecommitdiffstats
path: root/apps/rand.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-08-12 17:44:32 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-08-12 17:44:32 +0000
commit710069c19ee1795dfd614a4ba683d07e1b8e6f81 (patch)
treedc8522ce253e9841f209433a49b6fa12c932d98f /apps/rand.c
parentddd3a617ca96914707fc414200b445b52fe6c0ad (diff)
Fix warnings.
Diffstat (limited to 'apps/rand.c')
-rw-r--r--apps/rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/rand.c b/apps/rand.c
index a893896033..c3b26c466d 100644
--- a/apps/rand.c
+++ b/apps/rand.c
@@ -213,7 +213,7 @@ int MAIN(int argc, char **argv)
BIO_write(out, buf, chunk);
num -= chunk;
}
- BIO_flush(out);
+ (void)BIO_flush(out);
app_RAND_write_file(NULL, bio_err);
ret = 0;