projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8adf68
)
Avoid const castaway warning
author
Christos Zoulas
<christos@zoulas.com>
Sun, 30 Sep 2018 20:57:56 +0000
(16:57 -0400)
committer
Viktor Dukhovni
<openssl-users@dukhovni.org>
Mon, 10 Dec 2018 03:02:50 +0000
(22:02 -0500)
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
test/enginetest.c
patch
|
blob
|
history
diff --git
a/test/enginetest.c
b/test/enginetest.c
index 096a334d1f552fe66d82d1c3afa0c96c5e26abeb..dfd5c3f28b4c4816c7f50b532fe7b64998556c7d 100644
(file)
--- a/
test/enginetest.c
+++ b/
test/enginetest.c
@@
-162,8
+162,8
@@
static int test_engines(void)
ENGINE_free(ptr);
}
for (loop = 0; loop < NUMTOADD; loop++) {
- OPENSSL_free((void *)ENGINE_get_id(block[loop]));
- OPENSSL_free((void *)ENGINE_get_name(block[loop]));
+ OPENSSL_free((void *)
(intptr_t)
ENGINE_get_id(block[loop]));
+ OPENSSL_free((void *)
(intptr_t)
ENGINE_get_name(block[loop]));
}
to_return = 1;