mapi32: Cast-qual warning fix.

This commit is contained in:
Andrew Talbot 2006-09-14 19:47:26 +01:00 committed by Alexandre Julliard
parent 10a0931ebe
commit dce3302f71
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ HRESULT WINAPI OpenStreamOnFile(LPALLOCATEBUFFER lpAlloc, LPFREEBUFFER lpFree,
*/
ULONG WINAPI UlFromSzHex(LPCWSTR lpszHex)
{
LPSTR lpStr = (LPSTR)lpszHex;
LPCSTR lpStr = (LPCSTR)lpszHex;
ULONG ulRet = 0;
TRACE("(%s)\n", debugstr_a(lpStr));