From e9aaee77a2c753847be59e3464eb0fe7a7c20df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fukan?= <647xault@gmail.com> Date: Sun, 19 Jul 2026 15:14:21 +0300 Subject: [PATCH] llama.h : int32_t for llama_memory_seq_div factor d was a plain int while sibling params (p0, p1) are llama_pos (int32_t). Use int32_t for consistency with rest of the public API. --- include/llama.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llama.h b/include/llama.h index a311ac202357..37f2ac5944c0 100644 --- a/include/llama.h +++ b/include/llama.h @@ -761,7 +761,7 @@ extern "C" { llama_seq_id seq_id, llama_pos p0, llama_pos p1, - int d); + int32_t d); // Returns the smallest position present in the memory for the specified sequence // This is typically non-zero only for SWA caches