summaryrefslogtreecommitdiffstats
path: root/crypto/bio/b_print.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2003-11-04 00:51:32 +0000
committerGeoff Thorpe <geoff@openssl.org>2003-11-04 00:51:32 +0000
commitd8ec0dcf457f4dec39f137657b702fcbeaf5cc04 (patch)
treeb9fc5fe2f2eb1fb17672838a201fda808751a039 /crypto/bio/b_print.c
parentc465e7941ec785f2ce53638b351a21d6a49fe1a0 (diff)
Avoid some shadowed variable names.
Submitted by: Nils Larsch
Diffstat (limited to 'crypto/bio/b_print.c')
-rw-r--r--crypto/bio/b_print.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c
index f80335e269..de74ec6df9 100644
--- a/crypto/bio/b_print.c
+++ b/crypto/bio/b_print.c
@@ -576,12 +576,12 @@ abs_val(LDOUBLE value)
}
static LDOUBLE
-pow10(int exp)
+pow10(int in_exp)
{
LDOUBLE result = 1;
- while (exp) {
+ while (in_exp) {
result *= 10;
- exp--;
+ in_exp--;
}
return result;
}