minor : fix code style (#3463)

This commit is contained in:
Georgi Gerganov 2025-10-10 11:33:01 +03:00
parent 85d1d3d3dc
commit d3a29d7b88
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735
1 changed files with 2 additions and 1 deletions

View File

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