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:
384eff8
)
Delete pointless casts
author
Bodo Möller
<bodo@openssl.org>
Mon, 10 Sep 2001 14:10:10 +0000
(14:10 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Mon, 10 Sep 2001 14:10:10 +0000
(14:10 +0000)
crypto/engine/enginetest.c
patch
|
blob
|
history
diff --git
a/crypto/engine/enginetest.c
b/crypto/engine/enginetest.c
index befaef8c2985d86b3325b3c2ac4610cf5c66faaa..92cc0dacd0e42c6ba6177e0b63baf669d8879365 100644
(file)
--- a/
crypto/engine/enginetest.c
+++ b/
crypto/engine/enginetest.c
@@
-234,8
+234,8
@@
cleanup_loop:
}
for(loop = 0; loop < 512; loop++)
{
- OPENSSL_free(
(char *)(ENGINE_get_id(block[loop])
));
- OPENSSL_free(
(char *)(ENGINE_get_name(block[loop])
));
+ OPENSSL_free(
ENGINE_get_id(block[loop]
));
+ OPENSSL_free(
ENGINE_get_name(block[loop]
));
}
printf("\nTests completed happily\n");
to_return = 0;