corrected style

This commit is contained in:
jhs-panda 2024-04-21 19:04:26 -04:00
parent 465a1a2fa5
commit 0de4b6d0fb

View file

@ -2000,9 +2000,9 @@ static bool llama_download_file(CURL * curl, const char * url, const char * path
curl_easy_setopt(curl, CURLOPT_WRITEDATA, outfile); curl_easy_setopt(curl, CURLOPT_WRITEDATA, outfile);
// display download progress if not sharded // display download progress if not sharded
if(isShard){ if (isShard) {
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1L); curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1L);
}else{ } else {
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L); curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L);
} }