Commit 11904c80 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msxml3: Cast-qual warning fix.

parent b7c38b0d
......@@ -229,7 +229,7 @@ static HRESULT WINAPI xmlelem_getAttribute(IXMLElement *iface, BSTR strPropertyN
ptr = This->node->properties;
while (ptr)
{
if (!lstrcmpiA((LPSTR)name, (LPSTR)ptr->name))
if (!lstrcmpiA((LPSTR)name, (LPCSTR)ptr->name))
{
val = xmlNodeListGetString(ptr->doc, ptr->children, 1);
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment