mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Display line number instead of a pointer on a string
This commit is contained in:
parent
93fa57d25c
commit
42497fed77
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ void XMLError (xmlNodePtr xmlNode, const std::string &filename, const char *form
|
|||
vsnprintf( buffer, 1024, format, args );
|
||||
va_end( args );
|
||||
|
||||
Error (filename, "node (%s), line (%p) : %s", xmlNode->name, xmlNode->content, buffer);
|
||||
Error (filename, "node (%s), line (%d) : %s", xmlNode->name, xmlNode->line, buffer);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue