mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
mapi32: Cast-qual warning fix.
This commit is contained in:
parent
10a0931ebe
commit
dce3302f71
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue