From 0de4b6d0fb9357f28084ec6122640d97ea959c45 Mon Sep 17 00:00:00 2001 From: jhs-panda Date: Sun, 21 Apr 2024 19:04:26 -0400 Subject: [PATCH] corrected style --- common/common.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/common.cpp b/common/common.cpp index c108a7d1f..94e0b582b 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -2000,9 +2000,9 @@ static bool llama_download_file(CURL * curl, const char * url, const char * path curl_easy_setopt(curl, CURLOPT_WRITEDATA, outfile); // display download progress if not sharded - if(isShard){ + if (isShard) { curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1L); - }else{ + } else { curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L); }