AK: Support %i as an alias for %d in printf

This commit is contained in:
Conrad Pankoff 2019-09-02 15:31:19 +10:00 committed by Andreas Kling
parent b615a5c780
commit a92939b766

View file

@ -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;