style(sonar): fix cpp:S1110 (#4130)

This commit is contained in:
ReenigneArcher
2025-08-05 08:30:24 -04:00
committed by GitHub
parent 9f101fb546
commit b2d3ded6f4
3 changed files with 7 additions and 7 deletions

View File

@@ -172,19 +172,19 @@ namespace {
std::to_string(waveformat.Format.nSamplesPerSec) + " ";
switch (waveformat.dwChannelMask) {
case (waveformat_mask_stereo):
case waveformat_mask_stereo:
result += "2.0";
break;
case (waveformat_mask_surround51_with_backspeakers):
case waveformat_mask_surround51_with_backspeakers:
result += "5.1";
break;
case (waveformat_mask_surround51_with_sidespeakers):
case waveformat_mask_surround51_with_sidespeakers:
result += "5.1 (sidespeakers)";
break;
case (waveformat_mask_surround71):
case waveformat_mask_surround71:
result += "7.1";
break;