Alasdair Sinclair : quartz/tests: Fix missing void in empty parameter list.
Module: wine Branch: master Commit: 20f565de5ee36ac004488724b4e9bbff2bee73cc URL: http://source.winehq.org/git/wine.git/?a=commit;h=20f565de5ee36ac004488724b4... Author: Alasdair Sinclair <alasdairs(a)dsl.pipex.com> Date: Thu Jan 29 20:58:26 2009 +0000 quartz/tests: Fix missing void in empty parameter list. --- dlls/quartz/tests/avisplitter.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/quartz/tests/avisplitter.c b/dlls/quartz/tests/avisplitter.c index f4c8157..33a0d6d 100644 --- a/dlls/quartz/tests/avisplitter.c +++ b/dlls/quartz/tests/avisplitter.c @@ -185,7 +185,7 @@ static const char afile[] = "test.avi"; * By avoiding the filtergraph all together and connecting streams directly to * the null renderer I am sure that this is not the case here. */ -static void test_threads() +static void test_threads(void) { IFileSourceFilter *pfile = NULL; IBaseFilter *preader = NULL, *pavi = NULL;
participants (1)
-
Alexandre Julliard