fix typo
authorShinwoo Kim <cinoo.kim@samsung.com>
Tue, 15 Dec 2020 08:58:09 +0000 (17:58 +0900)
committerJunsuChoi <jsuya.choi@samsung.com>
Wed, 16 Dec 2020 01:01:56 +0000 (10:01 +0900)
Change-Id: I78d025c6cc6d0a6949f5050385fa6333967ddcaf

src/loaders/svg/tvgSvgLoader.cpp
src/loaders/svg/tvgXmlParser.cpp

index 67b5cc4b07013db6f452143eb36caa1390315854..96811815db28182471fab7d246230289dd159210 100644 (file)
@@ -1050,7 +1050,7 @@ static SvgNode* _createMaskNode(SvgLoaderData* loader, SvgNode* parent, const ch
 
     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;
@@ -2131,7 +2131,7 @@ static void _svgLoaderParserXmlOpen(SvgLoaderData* loader, const char* content,
     }
 #ifdef THORVG_LOG_ENABLED
     else {
-        printf("SVG: Unsuppoted elements used [Elements: %s]\n", tagName);
+        printf("SVG: Unsupported elements used [Elements: %s]\n", tagName);
     }
 #endif
 }
index 1da937e6a5bc2d8474118258adc456bf44413764..4ae053aa5da50302d3790bce8643f96ce50a06c0 100644 (file)
@@ -186,7 +186,7 @@ bool simpleXmlParseAttributes(const char* buf, unsigned bufLength, simpleXMLAttr
         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