diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-12-11 10:28:04 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-12-11 10:28:04 +0000 |
commit | 660564313214385da08d63578cd312b5070933a1 (patch) | |
tree | b89dc09d030bcdbd1c9b63899ec3a9910a422337 | |
parent | 8a7dcff7071b1ff29779c5e9a2c34c0ac34c0a94 (diff) |
Drop a pair of useless parentheses
-rw-r--r-- | lib/libcrypto/asn1/x_info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/asn1/x_info.c b/lib/libcrypto/asn1/x_info.c index cb8c4660854..d2c4bcfe7ae 100644 --- a/lib/libcrypto/asn1/x_info.c +++ b/lib/libcrypto/asn1/x_info.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x_info.c,v 1.21 2024/04/09 13:55:02 beck Exp $ */ +/* $OpenBSD: x_info.c,v 1.22 2024/12/11 10:28:03 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -69,7 +69,7 @@ X509_INFO_new(void) if ((ret = calloc(1, sizeof(X509_INFO))) == NULL) { ASN1error(ERR_R_MALLOC_FAILURE); - return (NULL); + return NULL; } ret->references = 1; |