Józef Kucia : tests: Annotate fall-through switch case (Coverity).
Module: vkd3d Branch: master Commit: 12707ff160b996d0b7eb440db578884e93ff74ce URL: https://source.winehq.org/git/vkd3d.git/?a=commit;h=12707ff160b996d0b7eb440d... Author: Józef Kucia <jkucia(a)codeweavers.com> Date: Wed Oct 24 13:16:26 2018 +0200 tests: Annotate fall-through switch case (Coverity). Signed-off-by: Józef Kucia <jkucia(a)codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- tests/d3d12.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/d3d12.c b/tests/d3d12.c index a63e122..15cd282 100644 --- a/tests/d3d12.c +++ b/tests/d3d12.c @@ -14534,6 +14534,7 @@ static void test_typed_uav_store(void) { default: trace("Unhandled format %#x.\n", tests[i].format); + /* fall-through */ case DXGI_FORMAT_R32_FLOAT: check_sub_resource_float(resource, 0, queue, command_list, tests[i].result.f, 2); break;
participants (1)
-
Alexandre Julliard