diff options
author | tb <> | 2021-03-12 15:55:26 +0000 |
---|---|---|
committer | tb <> | 2021-03-12 15:55:26 +0000 |
commit | 5b7869a4939d4e968cd6c1b0008fa62295363c65 (patch) | |
tree | 658c6b17cc0148fce32cfc1aac7748f65a3ddce7 | |
parent | 36a9d2bef3d172950dafcf87bb1757ae12603547 (diff) | |
download | openbsd-5b7869a4939d4e968cd6c1b0008fa62295363c65.tar.gz openbsd-5b7869a4939d4e968cd6c1b0008fa62295363c65.tar.bz2 openbsd-5b7869a4939d4e968cd6c1b0008fa62295363c65.zip |
Missing void in function definition
ok jsing
-rw-r--r-- | src/lib/libcrypto/x509/x509_constraints.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_constraints.c b/src/lib/libcrypto/x509/x509_constraints.c index 2d55e136d7..2557dd0a89 100644 --- a/src/lib/libcrypto/x509/x509_constraints.c +++ b/src/lib/libcrypto/x509/x509_constraints.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_constraints.c,v 1.13 2021/03/12 15:53:38 tb Exp $ */ | 1 | /* $OpenBSD: x509_constraints.c,v 1.14 2021/03/12 15:55:26 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2020 Bob Beck <beck@openbsd.org> | 3 | * Copyright (c) 2020 Bob Beck <beck@openbsd.org> |
4 | * | 4 | * |
@@ -36,7 +36,7 @@ | |||
36 | #define DOMAIN_PART_MAX_LEN 255 | 36 | #define DOMAIN_PART_MAX_LEN 255 |
37 | 37 | ||
38 | struct x509_constraints_name * | 38 | struct x509_constraints_name * |
39 | x509_constraints_name_new() | 39 | x509_constraints_name_new(void) |
40 | { | 40 | { |
41 | return (calloc(1, sizeof(struct x509_constraints_name))); | 41 | return (calloc(1, sizeof(struct x509_constraints_name))); |
42 | } | 42 | } |