diff options
author | Herman Semenov <GermanAizek@yandex.ru> | 2024-02-16 11:45:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 13:45:48 +0200 |
commit | 65085c713e14f78cdda6abc275b1a5d8c2b8ca15 (patch) | |
tree | 14161cbc4a2fd7cb4393aa7dc979bac3aa450c57 /llama.cpp | |
parent | 6dcc02d2444c779c18d49c364c5d5c5728b6b484 (diff) |
llama : minor fixed return int value (#5529)
Diffstat (limited to 'llama.cpp')
-rw-r--r-- | llama.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10893,7 +10893,7 @@ static int llama_apply_lora_from_file_internal( { LLAMA_LOG_ERROR("%s: invalid tensor data type '%d'\n", __func__, ftype); - return false; + return 1; } } |