LibC: make printf buffer only 128 bytes

Only reason for it to be big is if you want super large zero padding
for your number. This will eventually be handled without the buffer.
This commit is contained in:
Bananymous 2023-08-18 16:49:27 +03:00
parent 30463c9082
commit b10168eb1c
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun
// TODO: Lenght modifier
char conversion[1024];
char conversion[128];
const char* string = nullptr;
int length = -1;