summaryrefslogtreecommitdiff
path: root/mpz/out_str.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2010-11-22 22:26:05 +0100
committerTorbjorn Granlund <tege@gmplib.org>2010-11-22 22:26:05 +0100
commit198a1add0f2d556eb75bf2d85c7fceb9fafe9f51 (patch)
treec4fa3b97e983d3f057c0ba032faf39fe303d8f3b /mpz/out_str.c
parentd7afa9ea9c7dae166cb6719c3b11db9c96cca519 (diff)
downloadgmp-198a1add0f2d556eb75bf2d85c7fceb9fafe9f51.tar.gz
Whitespace cleanup.
Diffstat (limited to 'mpz/out_str.c')
-rw-r--r--mpz/out_str.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpz/out_str.c b/mpz/out_str.c
index 3b29af44a..a3b1b6615 100644
--- a/mpz/out_str.c
+++ b/mpz/out_str.c
@@ -53,9 +53,9 @@ mpz_out_str (FILE *stream, int base, mpz_srcptr x)
{
base = -base;
if (base <= 1)
- base = 10;
+ base = 10;
else if (base > 36)
- return 0;
+ return 0;
num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
}