Skip to content

Commit 3f12b2b

Browse files
hankcsteleprint-me
authored andcommitted
llama : fix try_override for bool_value which always return true (ggml-org#4519)
1 parent 927629d commit 3f12b2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1963,7 +1963,7 @@ namespace GGUFMeta {
19631963
target = override->bool_value;
19641964
return true;
19651965
}
1966-
return true;
1966+
return false;
19671967
}
19681968

19691969
template<typename OT>

0 commit comments

Comments
 (0)