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

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'd':
case L'i':
case L'o':
case L'u': {
fmt.append(L"ll");
break;