From 8262857db881f41bd13636dcc49f7f4b28ba9e08 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Mon, 1 Sep 2025 15:39:59 +0000 Subject: Add const here as well... --- src/lib/libcrypto/bn/bn_mul.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/bn/bn_mul.c b/src/lib/libcrypto/bn/bn_mul.c index 383ba795dd..7db0f61849 100644 --- a/src/lib/libcrypto/bn/bn_mul.c +++ b/src/lib/libcrypto/bn/bn_mul.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_mul.c,v 1.45 2025/09/01 15:33:23 jsing Exp $ */ +/* $OpenBSD: bn_mul.c,v 1.46 2025/09/01 15:39:59 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -330,7 +330,7 @@ bn_mul_words(BN_ULONG *r, const BN_ULONG *a, int a_len, const BN_ULONG *b, if (a_len < b_len) { int itmp; - BN_ULONG *ltmp; + const BN_ULONG *ltmp; itmp = a_len; a_len = b_len; -- cgit v1.2.3-55-g6feb