chore: make sure the index always starts at 0

This commit is contained in:
2026-08-07 11:32:22 +02:00
parent f104e824f2
commit 2b71797cfa
+1 -1
View File
@@ -11,7 +11,7 @@ struct va_info_s {
int index; int index;
}; };
static __thread struct va_info_s va_provider; static __thread struct va_info_s va_provider = {0};
char* va(const char* fmt, ...) { char* va(const char* fmt, ...) {
va_list ap; va_list ap;