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:
parent
30463c9082
commit
b10168eb1c
|
@ -308,7 +308,7 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun
|
||||||
|
|
||||||
// TODO: Lenght modifier
|
// TODO: Lenght modifier
|
||||||
|
|
||||||
char conversion[1024];
|
char conversion[128];
|
||||||
const char* string = nullptr;
|
const char* string = nullptr;
|
||||||
|
|
||||||
int length = -1;
|
int length = -1;
|
||||||
|
|
Loading…
Reference in New Issue