summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2025-09-01 15:39:59 +0000
committerjsing <>2025-09-01 15:39:59 +0000
commit8262857db881f41bd13636dcc49f7f4b28ba9e08 (patch)
tree881f26e8092f2fd9173b787114961f58ca96987b /src
parent99d47c1078643352842f47b6330086d9affefb59 (diff)
downloadopenbsd-8262857db881f41bd13636dcc49f7f4b28ba9e08.tar.gz
openbsd-8262857db881f41bd13636dcc49f7f4b28ba9e08.tar.bz2
openbsd-8262857db881f41bd13636dcc49f7f4b28ba9e08.zip
Add const here as well...
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/bn/bn_mul.c4
1 files changed, 2 insertions, 2 deletions
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 @@
1/* $OpenBSD: bn_mul.c,v 1.45 2025/09/01 15:33:23 jsing Exp $ */ 1/* $OpenBSD: bn_mul.c,v 1.46 2025/09/01 15:39:59 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -330,7 +330,7 @@ bn_mul_words(BN_ULONG *r, const BN_ULONG *a, int a_len, const BN_ULONG *b,
330 330
331 if (a_len < b_len) { 331 if (a_len < b_len) {
332 int itmp; 332 int itmp;
333 BN_ULONG *ltmp; 333 const BN_ULONG *ltmp;
334 334
335 itmp = a_len; 335 itmp = a_len;
336 a_len = b_len; 336 a_len = b_len;