From 9890cb788488776e61dffe929adb8925bb23ad62 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Thu, 8 Mar 2007 22:15:27 +0000 Subject: [PATCH] serialui: Replace const pointer type with correct pointer to const. --- dlls/serialui/confdlg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/serialui/confdlg.c b/dlls/serialui/confdlg.c index 6b5dbe2d808..52dcaf0882f 100644 --- a/dlls/serialui/confdlg.c +++ b/dlls/serialui/confdlg.c @@ -112,7 +112,7 @@ typedef struct tagPARAM2STR DWORD dwSize; LPPARAM2STRDATA data; } PARAM2STR, *LPPARAM2STR; -typedef const LPPARAM2STR LPCPARAM2STR; +typedef const PARAM2STR *LPCPARAM2STR; #define SERIALUI_TABLESIZE(x) ((sizeof (x))/(sizeof (x[0])))