diff options
author | tb <> | 2023-07-23 11:39:29 +0000 |
---|---|---|
committer | tb <> | 2023-07-23 11:39:29 +0000 |
commit | f7d044afe661bc9684b7c3805ffdca66717e9678 (patch) | |
tree | de590f6e9b46f0d430bd9613ef19e8d16f99ae2f /src/usr.bin/openssl/asn1pars.c | |
parent | a50c7c74b92512423af455aa73f495ebf050f4a3 (diff) | |
download | openbsd-f7d044afe661bc9684b7c3805ffdca66717e9678.tar.gz openbsd-f7d044afe661bc9684b7c3805ffdca66717e9678.tar.bz2 openbsd-f7d044afe661bc9684b7c3805ffdca66717e9678.zip |
sprinkle some void between () in function definitions
Diffstat (limited to 'src/usr.bin/openssl/asn1pars.c')
-rw-r--r-- | src/usr.bin/openssl/asn1pars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/asn1pars.c b/src/usr.bin/openssl/asn1pars.c index 3eac72cb66..6b99842330 100644 --- a/src/usr.bin/openssl/asn1pars.c +++ b/src/usr.bin/openssl/asn1pars.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1pars.c,v 1.15 2023/03/10 09:44:54 tb Exp $ */ | 1 | /* $OpenBSD: asn1pars.c,v 1.16 2023/07/23 11:39:29 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -221,7 +221,7 @@ static const struct option asn1pars_options[] = { | |||
221 | }; | 221 | }; |
222 | 222 | ||
223 | static void | 223 | static void |
224 | asn1pars_usage() | 224 | asn1pars_usage(void) |
225 | { | 225 | { |
226 | fprintf(stderr, | 226 | fprintf(stderr, |
227 | "usage: asn1parse [-i] [-dlimit num] [-dump] [-genconf file] " | 227 | "usage: asn1parse [-i] [-dlimit num] [-dump] [-genconf file] " |