Module: wine Branch: master Commit: 2f4bb7b78d10d24707f83f6f5186eb8f38dd3425 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2f4bb7b78d10d24707f83f6f51...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Tue Nov 14 22:13:36 2006 +0000
shell32: Cast-qual warnings fix.
---
dlls/shell32/shellole.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/shell32/shellole.c b/dlls/shell32/shellole.c index 90900d1..8572191 100644 --- a/dlls/shell32/shellole.c +++ b/dlls/shell32/shellole.c @@ -122,7 +122,7 @@ HRESULT WINAPI SHCoCreateInstance( { DWORD hres; IID iid; - CLSID * myclsid = (CLSID*)clsid; + const CLSID * myclsid = clsid; WCHAR sKeyName[MAX_PATH]; const WCHAR sCLSID[7] = {'C','L','S','I','D','\','\0'}; WCHAR sClassID[60];