diff --git a/reactos/dll/win32/kernel32/debug/output.c b/reactos/dll/win32/kernel32/debug/output.c index 66cfe6a1215..79d16e2772e 100644 --- a/reactos/dll/win32/kernel32/debug/output.c +++ b/reactos/dll/win32/kernel32/debug/output.c @@ -376,18 +376,6 @@ OutputDebugStringA(LPCSTR _OutputString) /* copy the current block */ memcpy(a_cBuffer, _OutputString, nRoundLen); - /* Have we reached the end of the string? */ - if (nRoundLen == nOutputStringLen) - { - /* Make sure we terminate with a line break */ - if (a_cBuffer[nRoundLen - 1] != '\n') - { - a_cBuffer[nRoundLen] = '\n'; - nRoundLen++; - nOutputStringLen++; - } - } - /* null-terminate the current block */ a_cBuffer[nRoundLen] = 0;