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:
parent
0a8e05f4d4
commit
4b8d2529a8
@ -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 '$':
|
||||
|
Loading…
Reference in New Issue
Block a user