common: change max url max length
This commit is contained in:
parent
fbcf2ab99f
commit
c7d4db3227
1 changed files with 1 additions and 1 deletions
|
@ -1984,7 +1984,7 @@ struct llama_model * llama_load_model_from_url(
|
|||
char split_path[PATH_MAX] = {0};
|
||||
llama_split_path(split_path, sizeof(split_path), split_prefix, download_idx, n_split);
|
||||
|
||||
char split_url[PATH_MAX] = {0};
|
||||
char split_url[2084] = {0};
|
||||
llama_split_path(split_url, sizeof(split_url), split_url_prefix, download_idx, n_split);
|
||||
|
||||
auto * curl = curl_easy_init();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue