diff --git a/modules/xml/Module.cpp b/modules/xml/Module.cpp index 27b3b349..5d0909f4 100644 --- a/modules/xml/Module.cpp +++ b/modules/xml/Module.cpp @@ -480,7 +480,7 @@ void OutputMessageImpl(const char * msg, va_list args) SetConsoleTextAttribute(hstdout, csb_before.wAttributes); #else - printf("%c[0;32m[SQMOD]%c[0;37m", 27, 27, msg); + printf("%c[0;32m[SQMOD]%c[0;37m", 27, 27); vprintf(msg, args); puts(""); #endif @@ -503,7 +503,7 @@ void OutputErrorImpl(const char * msg, va_list args) SetConsoleTextAttribute(hstdout, csb_before.wAttributes); #else - printf("%c[0;32m[SQMOD]%c[0;37m", 27, 27, msg); + printf("%c[0;32m[SQMOD]%c[0;37m", 27, 27); vprintf(msg, args); puts(""); #endif