fix printf.

This commit is contained in:
Christopher Jeffrey 2013-02-25 06:06:34 -06:00
parent b71203be18
commit 49a8f59091

View File

@ -1137,7 +1137,7 @@ function sprintf(src) {
if (opt.space) { if (opt.space) {
if (!opt.signs && +initial >= 0) { if (!opt.signs && +initial >= 0) {
param = ' ' + param; pre += ' ';
} }
} }