From 08b990a16a1f914c0b99c19a3e75d739b592532a Mon Sep 17 00:00:00 2001 From: anth64 Date: Thu, 23 Oct 2025 23:20:38 +0200 Subject: [PATCH] fix log function name --- src/stk_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stk_log.c b/src/stk_log.c index 2cb9ad2..d8d9cc3 100644 --- a/src/stk_log.c +++ b/src/stk_log.c @@ -2,7 +2,7 @@ #include #include -void stk_log_file(FILE *fp, const char *fmt, ...) +void stk_log(FILE *fp, const char *fmt, ...) { va_list args; va_start(args, fmt);