Bad logging, content is unsigned const char*, fixed it to use %s and not cast.
This commit is contained in:
parent
2220c593f5
commit
35cf55adca
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ void syntaxError(const char *filename, xmlNodePtr xmlNode, const char *format, .
|
|||
strcpy(buffer, "Unknown error");
|
||||
}
|
||||
|
||||
nlerror("(%s), node (%s), line (%d) :\n%s", filename, xmlNode->name, (int)xmlNode->content, buffer);
|
||||
nlerror("(%s), node (%s), line (%s) :\n%s", filename, xmlNode->name, xmlNode->content, buffer);
|
||||
}
|
||||
|
||||
bool getPropertyString(std::string &result, const char *filename, xmlNodePtr xmlNode, const char *propName)
|
||||
|
|
Loading…
Reference in a new issue