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:
ff3fa48
)
name confusion with HP library function prototype (?)
author
Ulf Möller
<ulf@openssl.org>
Mon, 10 Dec 2001 18:52:06 +0000
(18:52 +0000)
committer
Ulf Möller
<ulf@openssl.org>
Mon, 10 Dec 2001 18:52:06 +0000
(18:52 +0000)
crypto/bio/b_print.c
patch
|
blob
|
history
diff --git
a/crypto/bio/b_print.c
b/crypto/bio/b_print.c
index 3b0edcf3d0ebad8edc31899ee3f1cff869435ef5..b7e268f092011b94bc2697ebc3ef9403c4401899 100644
(file)
--- a/
crypto/bio/b_print.c
+++ b/
crypto/bio/b_print.c
@@
-569,7
+569,7
@@
pow10(int exp)
}
static long
-round(LDOUBLE value)
+round
v
(LDOUBLE value)
{
long intpart;
intpart = (long) value;
@@
-621,7
+621,7
@@
fmtfp(
/* we "cheat" by converting the fractional part to integer by
multiplying by a factor of 10 */
- fracpart = round((pow10(max)) * (ufvalue - intpart));
+ fracpart = round
v
((pow10(max)) * (ufvalue - intpart));
if (fracpart >= pow10(max)) {
intpart++;