summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-01-10 14:23:37 +0000
committertb <>2024-01-10 14:23:37 +0000
commit5eaf19183b29b4c39adc2b6a1eed98dd51b1df85 (patch)
tree374158d7a048cbb67c3db19ddd30b6b2e8aaa013 /src
parent9242b0b903dd7cf75ec56486b4c88314c99168ca (diff)
downloadopenbsd-5eaf19183b29b4c39adc2b6a1eed98dd51b1df85.tar.gz
openbsd-5eaf19183b29b4c39adc2b6a1eed98dd51b1df85.tar.bz2
openbsd-5eaf19183b29b4c39adc2b6a1eed98dd51b1df85.zip
Drop an unnecessary cast
from jsing
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/err/err_prn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/err/err_prn.c b/src/lib/libcrypto/err/err_prn.c
index 16d8862a82..61f4dad574 100644
--- a/src/lib/libcrypto/err/err_prn.c
+++ b/src/lib/libcrypto/err/err_prn.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: err_prn.c,v 1.21 2024/01/10 14:22:53 tb Exp $ */ 1/* $OpenBSD: err_prn.c,v 1.22 2024/01/10 14:23:37 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 *
@@ -109,7 +109,7 @@ LCRYPTO_ALIAS(ERR_print_errors_fp);
109static int 109static int
110print_bio(const char *str, size_t len, void *bp) 110print_bio(const char *str, size_t len, void *bp)
111{ 111{
112 return BIO_write((BIO *)bp, str, len); 112 return BIO_write(bp, str, len);
113} 113}
114 114
115void 115void