mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Bad logging, content is unsigned const char*, fixed it to use %s and not cast.
--HG-- branch : gsoc2011-worldeditorqt
This commit is contained in:
parent
df7110d2d6
commit
59abfb8a1d
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