1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-04-25 21:57:12 +02:00

Remove extraneous character from printf inside the Sample module.

This commit is contained in:
Sandu Liviu Catalin 2016-03-27 21:23:17 +03:00
parent a71726a3aa
commit 4bc4d8bd29

View File

@ -193,7 +193,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
@ -216,7 +216,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