From 3b4cc4464d66577db2b25934390a7481a2c5dc31 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 26 May 2011 11:31:39 +0200 Subject: [PATCH] comdlg32/tests: Make ensure_zero_events_() static. --- dlls/comdlg32/tests/itemdlg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comdlg32/tests/itemdlg.c b/dlls/comdlg32/tests/itemdlg.c index 1dfdf71a31b..4c4e1cebc54 100644 --- a/dlls/comdlg32/tests/itemdlg.c +++ b/dlls/comdlg32/tests/itemdlg.c @@ -848,7 +848,7 @@ static void test_basics(void) ok(!ref, "Got refcount %d, should have been released.\n", ref); } -void ensure_zero_events_(const char *file, int line, IFileDialogEventsImpl *impl) +static void ensure_zero_events_(const char *file, int line, IFileDialogEventsImpl *impl) { ok_(file, line)(!impl->OnFileOk, "OnFileOk: %d\n", impl->OnFileOk); ok_(file, line)(!impl->OnFolderChanging, "OnFolderChanging: %d\n", impl->OnFolderChanging);