From d3a29d7b882ae818dceae27f22555175ad9048b6 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Fri, 10 Oct 2025 11:33:01 +0300 Subject: [PATCH] minor : fix code style (#3463) --- src/whisper.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/whisper.cpp b/src/whisper.cpp index 8992a144..a212b7c9 100644 --- a/src/whisper.cpp +++ b/src/whisper.cpp @@ -6620,8 +6620,9 @@ static bool whisper_vad( whisper_vad_segments * vad_segments = whisper_vad_segments_from_samples(vctx, vad_params, samples, n_samples); - if(!vad_segments) + if (!vad_segments) { return false; + } if (vad_segments->data.size() > 0) { state->has_vad_segments = true;