From d87deb6ad0f26124c4c49ac4d9699a8be4a0ea8c Mon Sep 17 00:00:00 2001 From: tb <> Date: Wed, 11 Dec 2024 10:28:03 +0000 Subject: Drop a pair of useless parentheses --- src/lib/libcrypto/asn1/x_info.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 @@ -/* $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; -- cgit v1.2.3-55-g6feb