Module: wine Branch: master Commit: 9890cb788488776e61dffe929adb8925bb23ad62 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9890cb788488776e61dffe929a...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Thu Mar 8 22:15:27 2007 +0000
serialui: Replace const pointer type with correct pointer to const.
---
dlls/serialui/confdlg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/serialui/confdlg.c b/dlls/serialui/confdlg.c index 6b5dbe2..52dcaf0 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])))