]> git.stg.codes - stg.git/commitdiff
Fix strange prontf usage
authorMaxim Mamontov <faust.madf@gmail.com>
Tue, 7 Feb 2012 10:29:00 +0000 (12:29 +0200)
committerMaxim Mamontov <faust.madf@gmail.com>
Tue, 7 Feb 2012 10:29:00 +0000 (12:29 +0200)
projects/sgconf/parser.cpp
projects/sgconf_xml/parser.cpp

index 8e1e3cf1fe5c7e4b6fa8595f5b7864658116db14..82b7ca9e5819e3ecb1de1f96c994c28ca67ec9d9 100644 (file)
@@ -111,8 +111,7 @@ while (n != ans->end())
 
     if (XML_Parse(parser, n->c_str(), len, done) == XML_STATUS_ERROR)
         {
-        char s[128];
-        printf(s, "Parse error at line %d:\n%s\n",
+        printf("Parse error at line %d:\n%s\n",
                XML_GetCurrentLineNumber(parser),
                XML_ErrorString(XML_GetErrorCode(parser)));
         exit(UNKNOWN_ERR_CODE);
index 99b48a7b19d865fdef5299e3d1519f50ad278bda..f2d5993bb9bf2fa86eaf21178e8056c539248a9c 100644 (file)
@@ -166,8 +166,7 @@ while (n != ans->end())
 
     if (XML_Parse(parser, n->c_str(), len, done) == XML_STATUS_ERROR)
         {
-        char s[128];
-        printf(s, "Parse error at line %d: %s",
+        printf("Parse error at line %d: %s",
                XML_GetCurrentLineNumber(parser),
                XML_ErrorString(XML_GetErrorCode(parser)));
         return st_xml_parse_error;