From 309a918ed7f291501be33dd786a5a2339416572f Mon Sep 17 00:00:00 2001 From: Tevin Wang Date: Mon, 22 Apr 2024 13:49:17 -0400 Subject: [PATCH] Change boolean_t to bool type --- common/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index 32963c6c0..59095a126 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -1866,7 +1866,7 @@ void llama_batch_add( #ifdef LLAMA_USE_CURL -static bool llama_download_file(CURL * curl, const char * url, const char * path, boolean_t is_shard) { +static bool llama_download_file(CURL * curl, const char * url, const char * path, bool is_shard) { bool force_download = false; // Set the URL, allow to follow http redirection