Module: wine Branch: master Commit: 126fded4a4a1340fc2d729591625a2e295c136e1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=126fded4a4a1340fc2d7295916...
Author: André Hentschel nerv@dawncrow.de Date: Wed Nov 7 23:19:08 2012 +0100
winmm: Mark up fallthrough switch case (coverity).
---
dlls/winmm/winmm.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/winmm/winmm.c b/dlls/winmm/winmm.c index 890a3f0..aecb9cf 100644 --- a/dlls/winmm/winmm.c +++ b/dlls/winmm/winmm.c @@ -1406,6 +1406,7 @@ MMRESULT WINAPI midiStreamPosition(HMIDISTRM hMidiStrm, LPMMTIME lpMMT, UINT cbm switch (lpMMT->wType) { default: FIXME("Unsupported time type %x\n", lpMMT->wType); + /* fall through */ case TIME_BYTES: case TIME_SAMPLES: lpMMT->wType = TIME_MS;