From 3242eba98f0c01d219a8f79154c0d383b2eb4f98 Mon Sep 17 00:00:00 2001 From: Charles Xu Date: Sat, 7 Feb 2026 08:57:56 +0100 Subject: [PATCH] fix ci build warnings --- ggml/src/ggml-quants.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ggml/src/ggml-quants.c b/ggml/src/ggml-quants.c index c9cf2a1ac8..1d70c6c7d0 100644 --- a/ggml/src/ggml-quants.c +++ b/ggml/src/ggml-quants.c @@ -2217,6 +2217,7 @@ static inline uint8_t map_int8_to_uint2_idx(int32_t v0) { return 3; default: GGML_ASSERT(false); + return 0; } } @@ -2233,6 +2234,7 @@ static inline int32_t map_uint2_idx_to_int8(uint8_t v0) { return 3; default: GGML_ASSERT(false); + return 0; } }