Skip to content

Commit

Permalink
whisper : fix compile warning (#0)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Aug 9, 2024
1 parent 4b9c4de commit 4b7de08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/whisper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 4b7de08

Please sign in to comment.