From 4b7de08bfdc1bdd07d7727bc4f299b9bffec8f2a Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Thu, 8 Aug 2024 22:59:59 +0300 Subject: [PATCH] whisper : fix compile warning (#0) --- src/whisper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/whisper.cpp b/src/whisper.cpp index 752d5290..8d836908 100644 --- a/src/whisper.cpp +++ b/src/whisper.cpp @@ -7240,7 +7240,7 @@ struct median_filter_user_data { int filter_width; }; -static void median_filter(struct ggml_tensor * dst , const struct ggml_tensor * a, int ith, int nth, void * userdata) { +static void median_filter(struct ggml_tensor * dst , const struct ggml_tensor * a, int ith, int /*nth*/, void * userdata) { if (ith != 0) { return; }