From 4475045fe125cad638a4b4460ea7de18d75f5971 Mon Sep 17 00:00:00 2001 From: Alasdair Sinclair Date: Sun, 25 Jan 2009 22:27:28 +0000 Subject: [PATCH] comctl32: Fix missing void in empty parameter list. --- dlls/comctl32/toolbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/toolbar.c b/dlls/comctl32/toolbar.c index d991ea11bb8..1ca9c8ff7a8 100644 --- a/dlls/comctl32/toolbar.c +++ b/dlls/comctl32/toolbar.c @@ -3311,7 +3311,7 @@ TOOLBAR_GetBitmap (HWND hwnd, WPARAM wParam) static inline LRESULT -TOOLBAR_GetBitmapFlags () +TOOLBAR_GetBitmapFlags (void) { return (GetDeviceCaps (0, LOGPIXELSX) >= 120) ? TBBF_LARGE : 0; }