From e23a60a6bb77669b2ef8026e73269349c63dfbf6 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Wed, 3 Apr 2013 18:23:31 -0700 Subject: [PATCH] Another attempt to fix the printf tests on 32 bit Linux --- builtin_printf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin_printf.cpp b/builtin_printf.cpp index 75bd153e6..c0111e3e7 100644 --- a/builtin_printf.cpp +++ b/builtin_printf.cpp @@ -434,7 +434,7 @@ void builtin_printf_state_t::print_direc(const wchar_t *start, size_t length, wc break; case L's': case L'u': - fmt.append(L"l"); + fmt.append(L"ll"); break; default: break;