diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-09-18 14:48:39 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-09-18 14:48:39 +0000 |
commit | 767afcf8d53450d405b118bda226dd379922e776 (patch) | |
tree | e6e30495edeb70d97e9c9d9697843d51baa4e33b /regress/lib/libcrypto | |
parent | 8fb903c5520cf2411f2fc33a0746ac2be17824d4 (diff) |
Use void function argument to appease gcc 4.2.1
Diffstat (limited to 'regress/lib/libcrypto')
-rw-r--r-- | regress/lib/libcrypto/x509/constraints.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/lib/libcrypto/x509/constraints.c b/regress/lib/libcrypto/x509/constraints.c index 5a61c34d89f..c94e22faf74 100644 --- a/regress/lib/libcrypto/x509/constraints.c +++ b/regress/lib/libcrypto/x509/constraints.c @@ -348,7 +348,7 @@ test_invalid_uri(void) { } static int -test_constraints1() +test_constraints1(void) { char *c; size_t cl; char *d; size_t dl; |