Remove unnecessary newline

Most error messages have newlines. If they are absent, they get appended automatically.
This commit is contained in:
Kawe Mazidjatari 2023-02-19 00:44:43 +01:00
parent ad1f83523e
commit 020986fc3b

View File

@ -11,7 +11,7 @@ int HSys_Error_Internal(char* fmt, va_list args)
Error(eDLL_T::COMMON, NO_ERROR, "_______________________________________________________________\n");
Error(eDLL_T::COMMON, NO_ERROR, "] ENGINE ERROR ################################################\n");
vsprintf(buffer, fmt, args);
Error(eDLL_T::COMMON, NO_ERROR, "%s\n", buffer);
Error(eDLL_T::COMMON, NO_ERROR, "%s", buffer);
///////////////////////////////////////////////////////////////////////////
return Sys_Error_Internal(fmt, args);