summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-12-11 10:28:03 +0000
committertb <>2024-12-11 10:28:03 +0000
commitd87deb6ad0f26124c4c49ac4d9699a8be4a0ea8c (patch)
tree17885f858d30bc8fd6c752e69a1c1e0e30d73a58 /src
parent18e1d096587f484f86c6f7c83e582d6c52693697 (diff)
downloadopenbsd-d87deb6ad0f26124c4c49ac4d9699a8be4a0ea8c.tar.gz
openbsd-d87deb6ad0f26124c4c49ac4d9699a8be4a0ea8c.tar.bz2
openbsd-d87deb6ad0f26124c4c49ac4d9699a8be4a0ea8c.zip
Drop a pair of useless parentheses
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/asn1/x_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/x_info.c b/src/lib/libcrypto/asn1/x_info.c
index cb8c466085..d2c4bcfe7a 100644
--- a/src/lib/libcrypto/asn1/x_info.c
+++ b/src/lib/libcrypto/asn1/x_info.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x_info.c,v 1.21 2024/04/09 13:55:02 beck Exp $ */ 1/* $OpenBSD: x_info.c,v 1.22 2024/12/11 10:28:03 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 *
@@ -69,7 +69,7 @@ X509_INFO_new(void)
69 69
70 if ((ret = calloc(1, sizeof(X509_INFO))) == NULL) { 70 if ((ret = calloc(1, sizeof(X509_INFO))) == NULL) {
71 ASN1error(ERR_R_MALLOC_FAILURE); 71 ASN1error(ERR_R_MALLOC_FAILURE);
72 return (NULL); 72 return NULL;
73 } 73 }
74 ret->references = 1; 74 ret->references = 1;
75 75