Module: wine Branch: master Commit: dce3302f7195d6af55e871f8cbe98dedc728f4f0 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=dce3302f7195d6af55e871f8... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Thu Sep 14 19:47:26 2006 +0100 mapi32: Cast-qual warning fix. --- dlls/mapi32/util.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/mapi32/util.c b/dlls/mapi32/util.c index 9d75f14..c8225b2 100644 --- a/dlls/mapi32/util.c +++ b/dlls/mapi32/util.c @@ -732,7 +732,7 @@ HRESULT WINAPI OpenStreamOnFile(LPALLOCA */ ULONG WINAPI UlFromSzHex(LPCWSTR lpszHex) { - LPSTR lpStr = (LPSTR)lpszHex; + LPCSTR lpStr = (LPCSTR)lpszHex; ULONG ulRet = 0; TRACE("(%s)\n", debugstr_a(lpStr));