Codebase list faudio / de0c1f8
Fix unbalanced parentheses in FAudio.c Commit b5916945b90d ("Dont assert on WMA buffer and FAUDIO_FORMAT_EXTENSIBLE type") introduced unbalanced parentheses, which breaks builds using HAVE_WMADEC. Given the change made in the aforementioned commit, this balances parentheses by adding a third closing parenthesis after the reworked conditions. Signed-off-by: Stephen Kitt <steve@sk2.org> Stephen Kitt authored 2 years ago Ethan Lee committed 2 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
24542454 #ifdef HAVE_WMADEC
24552455 FAudio_assert( (voice->src.wmadec != NULL && (pBufferWMA != NULL ||
24562456 (voice->src.format->wFormatTag == FAUDIO_FORMAT_XMAUDIO2 ||
2457 voice->src.format->wFormatTag == FAUDIO_FORMAT_EXTENSIBLE)) ||
2457 voice->src.format->wFormatTag == FAUDIO_FORMAT_EXTENSIBLE))) ||
24582458 (voice->src.wmadec == NULL && (pBufferWMA == NULL && voice->src.format->wFormatTag != FAUDIO_FORMAT_XMAUDIO2)) );
24592459 #endif /* HAVE_WMADEC */
24602460