Merge pull request #4444 from trofi/master

Fix 'printf "%o"' handling on powerpc64
This commit is contained in:
Mahmoud Al-Qudsi 2017-10-03 09:58:23 +02:00 committed by GitHub
commit cebb63c1b5

View File

@ -444,6 +444,7 @@ void builtin_printf_state_t::print_direc(const wchar_t *start, size_t length, wc
case L'X': case L'X':
case L'd': case L'd':
case L'i': case L'i':
case L'o':
case L'u': { case L'u': {
fmt.append(L"ll"); fmt.append(L"ll");
break; break;