Dots is not needed for base 10 negative numbers; fix #3400

parent c59ef59a
...@@ -891,7 +891,7 @@ retry: ...@@ -891,7 +891,7 @@ retry:
} }
else { else {
s = nbuf; s = nbuf;
if (v < 0) { if (base != 10 && v < 0) {
dots = 1; dots = 1;
} }
switch (base) { switch (base) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment