fix build issue which reported by github CI system
This commit is contained in:
parent
9f844a3d0c
commit
8b11ef1426
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue