From: hankcs Date: Mon, 18 Dec 2023 13:14:58 +0000 (-0800) Subject: llama : fix try_override for bool_value which always return true (#4519) X-Git-Tag: upstream/0.0.4488~2830 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=3c04bf6da89eaf4c7d317e0518f0687dfcbf2de7;p=pkg%2Fggml%2Fsources%2Fllama.cpp llama : fix try_override for bool_value which always return true (#4519) --- diff --git a/llama.cpp b/llama.cpp index d6d575f9..99facbf7 100644 --- a/llama.cpp +++ b/llama.cpp @@ -1937,7 +1937,7 @@ namespace GGUFMeta { target = override->bool_value; return true; } - return true; + return false; } template