msxml3: Cast-qual warning fix.

This commit is contained in:
Andrew Talbot 2007-07-24 19:16:09 +01:00 committed by Alexandre Julliard
parent b7c38b0d75
commit 11904c80fa

View file

@ -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;