From 89ab37a261cd50b00647c22a389ca938e14a1db9 Mon Sep 17 00:00:00 2001 From: Pierrick Hymbert Date: Sat, 16 Mar 2024 17:48:27 +0100 Subject: [PATCH] Update common/common.cpp Co-authored-by: Georgi Gerganov --- common/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index c49f0920f..7630e0fbd 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -1686,7 +1686,7 @@ struct llama_model *llama_load_model_from_url(const char *model_url, const char fprintf(stderr, "%s: previous model .etag file found %s: %s\n", __func__, path_model, etag); } - auto *f_last_modified = fopen(last_modified_path, "r"); + auto * f_last_modified = fopen(last_modified_path, "r"); if (f_last_modified) { fgets(last_modified, sizeof(last_modified), f_last_modified); fclose(f_last_modified);