diff --git a/printf.c b/printf.c index 7ce259c..f6df54a 100644 --- a/printf.c +++ b/printf.c @@ -10,8 +10,8 @@ **/ int _printf(const char *format, ...) { - int buff_idx = 0; - int fmt_idx = 0; + int buff_idx; + int fmt_idx; unsigned int identifiers, BUFF_SIZE; char *buffer, *next, c; va_list args;