chore: fix almost *ALL* warnings.
[lunaix-os.git] / lunaix-os / usr / libc / _vprintf.c
index 1e563054a1a77917827d83e2e269410d35586399..28dea37c7db3c3314ad6a18b8cbac37a187f89f7 100644 (file)
@@ -19,7 +19,7 @@ static const char flag_chars[] = "#0- +";
 #define FLAG_CAPS (1 << 9)
 
 int
-__vprintf_internal(char* buffer, char* fmt, size_t max_len, va_list vargs)
+__vprintf_internal(char* buffer, const char* fmt, size_t max_len, va_list vargs)
 {
     // This sprintf just a random implementation I found it on Internet . lol.
     //      Of course, with some modifications for porting to LunaixOS :)