From daed2fc4a25e4ceb7f635f7a181b2a52499630a7 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 3 Jan 2025 08:04:16 +0000 Subject: Remove now unnecessary initialization of c and i --- src/lib/libcrypto/stack/stack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/libcrypto/stack/stack.c b/src/lib/libcrypto/stack/stack.c index c10f4260f0..1424661879 100644 --- a/src/lib/libcrypto/stack/stack.c +++ b/src/lib/libcrypto/stack/stack.c @@ -1,4 +1,4 @@ -/* $OpenBSD: stack.c,v 1.32 2025/01/03 08:03:28 tb Exp $ */ +/* $OpenBSD: stack.c,v 1.33 2025/01/03 08:04:16 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -202,7 +202,7 @@ obj_bsearch_ex(const void *key, const void *base_, int num, int size, int (*cmp)(const void *, const void *)) { const char *base = base_; - int l, h, i = 0, c = 0; + int l, h, i, c; l = 0; h = num; -- cgit v1.2.3-55-g6feb