From 2e0be48d5a20243f62d1297a5e903451c791cc47 Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 15 Aug 2023 18:05:15 +0000 Subject: [PATCH] Zap extra parens --- lib/libcrypto/asn1/a_string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/asn1/a_string.c b/lib/libcrypto/asn1/a_string.c index 7deaf38e332..ec492e71f06 100644 --- a/lib/libcrypto/asn1/a_string.c +++ b/lib/libcrypto/asn1/a_string.c @@ -1,4 +1,4 @@ -/* $OpenBSD: a_string.c,v 1.16 2023/08/15 17:40:06 tb Exp $ */ +/* $OpenBSD: a_string.c,v 1.17 2023/08/15 18:05:15 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -186,7 +186,7 @@ ASN1_STRING_set(ASN1_STRING *astr, const void *_data, int len) if ((astr->data = calloc(1, len + 1)) == NULL) { ASN1error(ERR_R_MALLOC_FAILURE); - return (0); + return 0; } astr->length = len; -- 2.20.1