fix format_string currency

This commit is contained in:
IntelOrca 2014-05-31 17:11:26 +01:00
parent 7ae52df001
commit b701eb8222
1 changed files with 1 additions and 0 deletions

View File

@ -1233,6 +1233,7 @@ void format_currency(char **dest, int value)
*dest = dst;
value /= 10;
if (value == 0) {
*dst++ = '0';
} else {