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 MaxmindDB module.
This commit is contained in:
parent
4bc4d8bd29
commit
4e0831611a
@ -185,7 +185,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
|
||||
@ -208,7 +208,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
|
||||
|
Loading…
Reference in New Issue
Block a user