From 02fb0d2974ebca5f5099973c8eb3608468c52d38 Mon Sep 17 00:00:00 2001 From: Hans-Kristian Arntzen Date: Wed, 22 Apr 2020 13:09:23 +0200 Subject: [PATCH] vkd3d: Functions take void as argument type in C. Signed-off-by: Hans-Kristian Arntzen --- tests/d3d12.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/d3d12.c b/tests/d3d12.c index ed4d017c..2d24f054 100644 --- a/tests/d3d12.c +++ b/tests/d3d12.c @@ -40626,12 +40626,12 @@ static void test_stencil_export(bool use_dxil) destroy_test_context(&context); } -static void test_stencil_export_dxbc() +static void test_stencil_export_dxbc(void) { test_stencil_export(false); } -static void test_stencil_export_dxil() +static void test_stencil_export_dxil(void) { test_stencil_export(true); }