You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-shells/fish/files/fish-2.7.1-fix-printf-o-han...

13 lines
408 B

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;