aboutsummaryrefslogtreecommitdiffstats
path: root/common/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/util.c')
-rw-r--r--common/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/util.c b/common/util.c
index 25a3e861..13397437 100644
--- a/common/util.c
+++ b/common/util.c
@@ -8,7 +8,7 @@ int wrap(int i, int max) {
8 8
9int numlen(int n) { 9int numlen(int n) {
10 if (n == 0) { 10 if (n == 0) {
11 return n; 11 return 1;
12 } 12 }
13 return log10(n) + 1; 13 return log10(n) + 1;
14} 14}