diff options
| author | tb <> | 2025-12-21 07:35:11 +0000 |
|---|---|---|
| committer | tb <> | 2025-12-21 07:35:11 +0000 |
| commit | c58dfc9c3fb284d9e07336a2d910134ea05b7aea (patch) | |
| tree | a2ec81694bd5b59216f8f56ff767a6136444f9f2 /src/lib/libcrypto/stack/stack_local.h | |
| parent | f0030cb3d36507775af6db668b87cf6d9558fbfa (diff) | |
| download | openbsd-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.h | 4 |
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 | ||
| 62 | struct stack_st { | 62 | struct 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; |
