From: Georgi Gerganov Date: Wed, 28 Aug 2024 08:40:11 +0000 (+0300) Subject: whisper : fix compile warning for unused params X-Git-Tag: upstream/1.7.4~485 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=6e9596f6de084ee07035ea8c5cfdd6966403800c;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp whisper : fix compile warning for unused params --- diff --git a/src/whisper.cpp b/src/whisper.cpp index 0744dba1..0e72f875 100644 --- a/src/whisper.cpp +++ b/src/whisper.cpp @@ -1297,6 +1297,8 @@ static ggml_backend_t whisper_backend_init_gpu(const whisper_context_params & pa } #endif + GGML_UNUSED(params); + return result; }