fix build issue which reported by github CI system

This commit is contained in:
zhou.weiguo 2024-04-17 17:23:39 +08:00
parent 9f844a3d0c
commit 8b11ef1426
No known key found for this signature in database
GPG key ID: D0FCFC6811D1C8BF

View file

@ -17165,10 +17165,10 @@ static void llama_log_internal_v(ggml_log_level level, const char * file, const
va_end(args_copy);
}
static void llama_log_internal(ggml_log_level level, const char * format, ...) {
static void llama_log_internal(ggml_log_level level, const char * file, const char * func, int line, const char * format, ...) {
va_list args;
va_start(args, format);
llama_log_internal_v(level, format, args);
llama_log_internal_v(level, file, func, line, format, args);
va_end(args);
}