diff options
-rw-r--r-- | AK/PrintfImplementation.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AK/PrintfImplementation.h b/AK/PrintfImplementation.h index ff76889afd..43e4aa7d63 100644 --- a/AK/PrintfImplementation.h +++ b/AK/PrintfImplementation.h @@ -290,6 +290,7 @@ template<typename PutChFunc> } break; case 'd': + case 'i': ret += print_signed_number(putch, bufptr, va_arg(ap, int), left_pad, zeroPad, fieldWidth); break; |