From 1bfc280607a989c94cbcf00609d9c7673b7c1fc5 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Fri, 13 Jun 2025 17:54:17 +0300 Subject: [PATCH] Fix macro --- od-win32/win32gui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/od-win32/win32gui.h b/od-win32/win32gui.h index 46fdc601..81d17a7d 100644 --- a/od-win32/win32gui.h +++ b/od-win32/win32gui.h @@ -22,7 +22,7 @@ void HtmlHelp(const TCHAR*); #define MAX_GUIIDPARAMS 16 #define MAX_DLGID 100 -#define xSendDlgItemMessage(a, b, c, d, e) (int)SendDlgItemMessage(a, b, c, (WPARAM)d, (LPARAM)e) +#define xSendDlgItemMessage(a, b, c, d, e) (int)SendDlgItemMessage(a, b, c, (WPARAM)(d), (LPARAM)(e)) struct dlgstore { -- 2.47.3