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:
6e6aa5a
)
bio/b_print.c: fix %z failure in 32-bit build.
author
Andy Polyakov
<appro@openssl.org>
Wed, 29 Mar 2017 20:48:26 +0000
(22:48 +0200)
committer
Andy Polyakov
<appro@openssl.org>
Wed, 29 Mar 2017 21:51:57 +0000
(23:51 +0200)
Reviewed-by: Richard Levitte <levitte@openssl.org>
crypto/bio/b_print.c
patch
|
blob
|
history
diff --git
a/crypto/bio/b_print.c
b/crypto/bio/b_print.c
index 86aec79e4430ef79f5dfe1e6696d1b41c4867251..883af19388e3a01e0ca98a10faab61d774663f71 100644
(file)
--- a/
crypto/bio/b_print.c
+++ b/
crypto/bio/b_print.c
@@
-267,10
+267,10
@@
_dopr(char **sbuffer,
value = va_arg(args, unsigned LLONG);
break;
case DP_C_SIZE:
- value =
(ossl_ssize_t)
va_arg(args, size_t);
+ value = va_arg(args, size_t);
break;
default:
- value = (LLONG)
va_arg(args, unsigned int);
+ value = (LLONG)va_arg(args, unsigned int);
break;
}
if (!fmtint(sbuffer, buffer, &currlen, maxlen, value,