From b088122719a9409642134bb1d5fe0c865d7099b0 Mon Sep 17 00:00:00 2001 From: Pierrick Hymbert Date: Sat, 16 Mar 2024 17:47:04 +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 d1654c59a..2720f9310 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -1775,7 +1775,7 @@ struct llama_model *llama_load_model_from_url(const char *model_url, const char // Write the new ETag to the .etag file if (strlen(headers.etag) > 0) { - auto *etag_file = fopen(etag_path, "w"); + auto * etag_file = fopen(etag_path, "w"); if (etag_file) { fputs(headers.etag, etag_file); fclose(etag_file);