From be561a7ffd3d4ee86be3d782b45c7a6491d64530 Mon Sep 17 00:00:00 2001 From: Pierrick Hymbert Date: Sat, 16 Mar 2024 17:48:32 +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 7630e0fbd..f07ab4448 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -1679,7 +1679,7 @@ struct llama_model *llama_load_model_from_url(const char *model_url, const char strncat(last_modified_path, ".lastModified", 15); if (file_exists) { - auto *f_etag = fopen(etag_path, "r"); + auto * f_etag = fopen(etag_path, "r"); if (f_etag) { fgets(etag, sizeof(etag), f_etag); fclose(f_etag);