1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

- error.c: removed a C++ like comment

Daniel
This commit is contained in:
Daniel Veillard
2001-03-20 13:22:46 +00:00
parent 0b6b55b076
commit 7d42b54bb1
2 changed files with 5 additions and 1 deletions

View File

@ -160,7 +160,7 @@ xmlGetVarStr(const char * msg, va_list args) {
size = 100;
length = 0;
while (1) { // From the man page for vsnprintf ....
while (1) {
left = size - length;
/* Try to print in the allocated space. */
chars = vsnprintf(str + length, left, msg, args);