From 020986fc3b0a470e2f8d4bcd9842c3b430498491 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 19 Feb 2023 00:44:43 +0100 Subject: [PATCH] Remove unnecessary newline Most error messages have newlines. If they are absent, they get appended automatically. --- r5dev/engine/sys_dll.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/engine/sys_dll.cpp b/r5dev/engine/sys_dll.cpp index ac93a9ab..68b56a53 100644 --- a/r5dev/engine/sys_dll.cpp +++ b/r5dev/engine/sys_dll.cpp @@ -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);