From: jsing Date: Mon, 6 May 2024 14:38:20 +0000 (+0000) Subject: Fix function wrapping. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=21e142091427cef1ae08d0c57a9429980d4d2ba3;p=openbsd Fix function wrapping. --- diff --git a/lib/libcrypto/lhash/lhash.c b/lib/libcrypto/lhash/lhash.c index 2fb3c4ca59c..ded0d00ddea 100644 --- a/lib/libcrypto/lhash/lhash.c +++ b/lib/libcrypto/lhash/lhash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lhash.c,v 1.23 2024/05/06 14:36:05 jsing Exp $ */ +/* $OpenBSD: lhash.c,v 1.24 2024/05/06 14:38:20 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -399,7 +399,8 @@ contract(_LHASH *lh) } } -static LHASH_NODE **getrn(_LHASH *lh, const void *data, unsigned long *rhash) +static LHASH_NODE ** +getrn(_LHASH *lh, const void *data, unsigned long *rhash) { LHASH_NODE **ret, *n1; unsigned long hash, nn;