whisper : fix compile warning (#0)

This commit is contained in:
Georgi Gerganov 2024-08-08 22:59:59 +03:00
parent 4b9c4de1ad
commit 4b7de08bfd

View File

@ -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;
}