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

Remove extraneous character from printf inside the SQLite module.

This commit is contained in:
Sandu Liviu Catalin 2016-03-27 21:22:49 +03:00
parent 432ae5fd68
commit a71726a3aa

View File

@ -710,7 +710,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
@ -733,7 +733,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