blob: 4d3d79ae6a53fff916758ad32df490faca1898cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
diff --git a/src/builtin_printf.cpp b/src/builtin_printf.cpp
index 8595120d5..24cf9a9e1 100644
--- a/src/builtin_printf.cpp
+++ b/src/builtin_printf.cpp
@@ -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;
|