1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Remove extraneous character from printf inside the INI module.

This commit is contained in:
Sandu Liviu Catalin 2016-03-27 20:50:40 +03:00
parent 6c0c09287e
commit 0c7ab18700

View File

@ -295,7 +295,7 @@ void OutputMessageImpl(const char * msg, va_list args)
SetConsoleTextAttribute(hstdout, csb_before.wAttributes); SetConsoleTextAttribute(hstdout, csb_before.wAttributes);
#else #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); vprintf(msg, args);
puts(""); puts("");
#endif #endif
@ -318,7 +318,7 @@ void OutputErrorImpl(const char * msg, va_list args)
SetConsoleTextAttribute(hstdout, csb_before.wAttributes); SetConsoleTextAttribute(hstdout, csb_before.wAttributes);
#else #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); vprintf(msg, args);
puts(""); puts("");
#endif #endif