From cf73294f5a692c6f93dcfba2e9b260855d36c013 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Wed, 22 Apr 2015 22:02:45 +0000 Subject: [PATCH] [GDI32] Add missing newline in a debug print. svn path=/trunk/; revision=67357 --- reactos/win32ss/gdi/gdi32/objects/font.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/win32ss/gdi/gdi32/objects/font.c b/reactos/win32ss/gdi/gdi32/objects/font.c index 25cab29f916..e4f593b666e 100644 --- a/reactos/win32ss/gdi/gdi32/objects/font.c +++ b/reactos/win32ss/gdi/gdi32/objects/font.c @@ -2211,7 +2211,7 @@ GdiAddFontResourceW( if (!SearchPathW(lpszBuffer, lpszFilename, NULL, MAX_PATH, lpszAbsPath, NULL)) { - DPRINT1("Font not found. The Buffer is: %ls, the FileName is: %S", lpszBuffer, lpszFilename); + DPRINT1("Font not found. The Buffer is: %ls, the FileName is: %S\n", lpszBuffer, lpszFilename); return 0; } }