summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/stack/stack_local.h
diff options
context:
space:
mode:
authortb <>2025-12-21 07:35:11 +0000
committertb <>2025-12-21 07:35:11 +0000
commitc58dfc9c3fb284d9e07336a2d910134ea05b7aea (patch)
treea2ec81694bd5b59216f8f56ff767a6136444f9f2 /src/lib/libcrypto/stack/stack_local.h
parentf0030cb3d36507775af6db668b87cf6d9558fbfa (diff)
downloadopenbsd-c58dfc9c3fb284d9e07336a2d910134ea05b7aea.tar.gz
openbsd-c58dfc9c3fb284d9e07336a2d910134ea05b7aea.tar.bz2
openbsd-c58dfc9c3fb284d9e07336a2d910134ea05b7aea.zip
stack: switch data from char ** to void **
ok jsing kenjiro
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/stack/stack_local.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/stack/stack_local.h b/src/lib/libcrypto/stack/stack_local.h
index a330707192..63d793303a 100644
--- a/src/lib/libcrypto/stack/stack_local.h
+++ b/src/lib/libcrypto/stack/stack_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: stack_local.h,v 1.1 2024/03/02 11:11:11 tb Exp $ */ 1/* $OpenBSD: stack_local.h,v 1.2 2025/12/21 07:35:11 tb 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 *
@@ -61,7 +61,7 @@
61 61
62struct stack_st { 62struct stack_st {
63 int num; 63 int num;
64 char **data; 64 void **data;
65 int sorted; 65 int sorted;
66 66
67 int num_alloc; 67 int num_alloc;