commit | 294835a839655c4787d4dbf2916ac48529fcbb16 | [log] [tgz] |
---|---|---|
author | Eric Pouech <pouech-eric@wanadoo.fr> | Mon Dec 06 20:43:55 2004 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Dec 06 20:43:55 2004 +0000 |
tree | a9e9618e2c97e12e1b86d742622fc07ca3057b04 | |
parent | 01035f172d0f30bbb065337eeb45f06fa25735ca [diff] [blame] |
Another round of const correctness fixes.
diff --git a/windows/spy.c b/windows/spy.c index 1b1a420..d765ef5 100644 --- a/windows/spy.c +++ b/windows/spy.c
@@ -1316,7 +1316,7 @@ { const WCHAR *classname; /* class name to match */ const USER_MSG *classmsg; /* pointer to first USER_MSG for class */ - USER_MSG *lastmsg; /* pointer to last USER_MSG for class */ +const USER_MSG *lastmsg; /* pointer to last USER_MSG for class */ } CONTROL_CLASS; #define USM(a,b) { #a ,a,b}