Commit 718a924f authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msxml3: Use SUCCEEDED instead of !FAILED.

parent 3e59606a
......@@ -2760,7 +2760,7 @@ static HRESULT WINAPI domdoc_validateNode(
{
hr = SchemaCache_validate_tree(This->properties->schemaCache, get_node_obj(node)->node);
if (!FAILED(hr))
if (SUCCEEDED(hr))
{
++validated;
/* TODO: get a real error code here */
......
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