1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-09-01 17:14:15 -04: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 '9':
// Part of some numeric count
count = count * 10 + (wc - '0');
count = count * 10 + (wc - L'0');
break;
case '$':