fix mistake

This commit is contained in:
Shinwoo Kim 2020-12-15 18:01:01 +09:00 committed by JunsuChoi
parent 54e5cdee10
commit aedd3afd00

View file

@ -747,7 +747,7 @@ static bool _attrParseSvgNode(void* data, const char* key, const char* value)
return simpleXmlParseW3CAttribute(value, _parseStyleAttr, loader);
}
#ifdef THORVG_LOG_ENABLED
else if (!strcmp(key, "xmlns") || !strcmp(key, "xmlns:xlink") || strcmp (key, "xmlns:svg")) {
else if (!strcmp(key, "xmlns") || !strcmp(key, "xmlns:xlink") || !strcmp (key, "xmlns:svg")) {
//No action
}
#endif