From: tb Date: Sat, 24 Feb 2024 07:50:25 +0000 (+0000) Subject: err.c: fix incorrect line wrapping X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=eb7688f5a6d31fa4d166c665ec2ee1a6877edc68;p=openbsd err.c: fix incorrect line wrapping --- diff --git a/lib/libcrypto/err/err.c b/lib/libcrypto/err/err.c index 4b4be213b4e..f13e889da99 100644 --- a/lib/libcrypto/err/err.c +++ b/lib/libcrypto/err/err.c @@ -1,4 +1,4 @@ -/* $OpenBSD: err.c,v 1.56 2023/07/28 10:23:19 tb Exp $ */ +/* $OpenBSD: err.c,v 1.57 2024/02/24 07:50:25 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -328,8 +328,8 @@ err_string_data_cmp(const ERR_STRING_DATA *a, const ERR_STRING_DATA *b) } static IMPLEMENT_LHASH_COMP_FN(err_string_data, ERR_STRING_DATA) -static -LHASH_OF(ERR_STRING_DATA) *int_err_get(int create) +static LHASH_OF(ERR_STRING_DATA) * +int_err_get(int create) { LHASH_OF(ERR_STRING_DATA) *ret = NULL; @@ -425,8 +425,8 @@ err_state_cmp(const ERR_STATE *a, const ERR_STATE *b) } static IMPLEMENT_LHASH_COMP_FN(err_state, ERR_STATE) -static -LHASH_OF(ERR_STATE) *int_thread_get(int create) +static LHASH_OF(ERR_STATE) * +int_thread_get(int create) { LHASH_OF(ERR_STATE) *ret = NULL;