artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f3bd94
)
Drop an unnecessary cast
author
tb
<tb@openbsd.org>
Wed, 10 Jan 2024 14:23:37 +0000
(14:23 +0000)
committer
tb
<tb@openbsd.org>
Wed, 10 Jan 2024 14:23:37 +0000
(14:23 +0000)
from jsing
lib/libcrypto/err/err_prn.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/err/err_prn.c
b/lib/libcrypto/err/err_prn.c
index
16d8862
..
61f4dad
100644
(file)
--- a/
lib/libcrypto/err/err_prn.c
+++ b/
lib/libcrypto/err/err_prn.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: err_prn.c,v 1.2
1 2024/01/10 14:22:53
tb Exp $ */
+/* $OpenBSD: err_prn.c,v 1.2
2 2024/01/10 14:23:37
tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@
-109,7
+109,7
@@
LCRYPTO_ALIAS(ERR_print_errors_fp);
static int
print_bio(const char *str, size_t len, void *bp)
{
- return BIO_write(
(BIO *)
bp, str, len);
+ return BIO_write(bp, str, len);
}
void