1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-12-04 14:46:45 -05:00

Replace '0' with L'0', just in case

This commit is contained in:
John Zaitseff 2011-08-20 15:27:22 +10:00
parent 0a8e05f4d4
commit 4b8d2529a8

View File

@ -742,7 +742,7 @@ int mkchstr_parse (const wchar_t *restrict format,
case '8': case '8':
case '9': case '9':
// Part of some numeric count // Part of some numeric count
count = count * 10 + (wc - '0'); count = count * 10 + (wc - L'0');
break; break;
case '$': case '$':