summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream.c b/stream.c
index 48738bb7..d5886336 100644
--- a/stream.c
+++ b/stream.c
@@ -3259,7 +3259,7 @@ val formatv(val stream_in, val fmtstr, struct args *al)
vformat_str(stream, lit("#<bad-float>"), width, align, 0);
continue;
}
- precision = 0;
+ precision = (width ? width - 1 : 0);
goto output_num;
}
case 'd':
@@ -3348,7 +3348,7 @@ val formatv(val stream_in, val fmtstr, struct args *al)
continue;
}
- precision = 0;
+ precision = (width ? width - 1 : 0);
goto output_num;
default:
if (width != 0 || precision_p) {