summaryrefslogtreecommitdiffstats
path: root/src/xplist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xplist.c')
-rw-r--r--src/xplist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xplist.c b/src/xplist.c
index 9569d07..d8f6458 100644
--- a/src/xplist.c
+++ b/src/xplist.c
@@ -409,7 +409,7 @@ static int num_digits_i(int64_t i)
409 int64_t po10; 409 int64_t po10;
410 n=1; 410 n=1;
411 if (i < 0) { 411 if (i < 0) {
412 i = -i; 412 i = (i == INT64_MIN) ? INT64_MAX : -i;
413 n++; 413 n++;
414 } 414 }
415 po10=10; 415 po10=10;