summaryrefslogtreecommitdiff
path: root/llama.cpp
diff options
context:
space:
mode:
authorHerman Semenov <GermanAizek@yandex.ru>2024-02-16 11:45:48 +0000
committerGitHub <noreply@github.com>2024-02-16 13:45:48 +0200
commit65085c713e14f78cdda6abc275b1a5d8c2b8ca15 (patch)
tree14161cbc4a2fd7cb4393aa7dc979bac3aa450c57 /llama.cpp
parent6dcc02d2444c779c18d49c364c5d5c5728b6b484 (diff)
llama : minor fixed return int value (#5529)
Diffstat (limited to 'llama.cpp')
-rw-r--r--llama.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.cpp b/llama.cpp
index 08e7b02b..8966c3e6 100644
--- a/llama.cpp
+++ b/llama.cpp
@@ -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;
}
}