Change-Id: I78d025c6cc6d0a6949f5050385fa6333967ddcaf
loader->svgParse->node->display = false;
#ifdef THORVG_LOG_ENABLED
- printf("SVG: Unsuppoted elements used [Elements: mask]\n");
+ printf("SVG: Unsupported elements used [Elements: mask]\n");
#endif
return loader->svgParse->node;
}
#ifdef THORVG_LOG_ENABLED
else {
- printf("SVG: Unsuppoted elements used [Elements: %s]\n", tagName);
+ printf("SVG: Unsupported elements used [Elements: %s]\n", tagName);
}
#endif
}
tval[valueEnd - value] = '\0';
#ifdef THORVG_LOG_ENABLED
- if (!func((void*)data, tmpBuf, tval)) printf("SVG: Unsuppoted attributes used [Elements type: %s][Attribute: %s]\n", nodeTypeToString(((SvgLoaderData*)data)->svgParse->node->type).c_str(), tmpBuf);
+ if (!func((void*)data, tmpBuf, tval)) printf("SVG: Unsupported attributes used [Elements type: %s][Attribute: %s]\n", nodeTypeToString(((SvgLoaderData*)data)->svgParse->node->type).c_str(), tmpBuf);
#else
func((void*)data, tmpBuf, tval);
#endif