diff options
author | tb <> | 2024-01-10 14:23:37 +0000 |
---|---|---|
committer | tb <> | 2024-01-10 14:23:37 +0000 |
commit | fef73867fcbc2519f78d60048c4735f3819ea1f3 (patch) | |
tree | 374158d7a048cbb67c3db19ddd30b6b2e8aaa013 /src/lib | |
parent | c3992a11119db57dd0ffed20dfdac0b7ecca39b8 (diff) | |
download | openbsd-fef73867fcbc2519f78d60048c4735f3819ea1f3.tar.gz openbsd-fef73867fcbc2519f78d60048c4735f3819ea1f3.tar.bz2 openbsd-fef73867fcbc2519f78d60048c4735f3819ea1f3.zip |
Drop an unnecessary cast
from jsing
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/err/err_prn.c | 4 |
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); | |||
109 | static int | 109 | static int |
110 | print_bio(const char *str, size_t len, void *bp) | 110 | print_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 | ||
115 | void | 115 | void |