From dd7dc24c8d63e767de381347717c3608e72bb8d3 Mon Sep 17 00:00:00 2001 From: Matthias Kupfer Date: Wed, 30 Jul 2008 21:16:03 +0000 Subject: [PATCH] Patch by Gregor Schneider a.k.a DosX - use line breaks in debug output svn path=/trunk/; revision=34966 --- reactos/dll/win32/shell32/recyclebin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/dll/win32/shell32/recyclebin.c b/reactos/dll/win32/shell32/recyclebin.c index 0bf9260b98b..bc19b0e856d 100644 --- a/reactos/dll/win32/shell32/recyclebin.c +++ b/reactos/dll/win32/shell32/recyclebin.c @@ -972,7 +972,7 @@ BOOL SH_ShowRecycleBinProperties(WCHAR sDrive) hprop = SH_CreatePropertySheetPage("BITBUCKET_PROPERTIES_DLG", BitBucketDlg, (LPARAM)sDrive, NULL); if (!hprop) { - ERR("Failed to create property sheet"); + ERR("Failed to create property sheet\n"); return FALSE; } hpsp[psh.nPages] = hprop; @@ -1006,7 +1006,7 @@ TRASH_CanTrashFile(LPCWSTR wszPath) res = RegOpenKeyExW(HKEY_LOCAL_MACHINE, szKey, 0, KEY_QUERY_VALUE, &hKey); if (res != ERROR_SUCCESS) { - FIXME("Failed to open registry path"); + FIXME("Failed to open registry path\n"); return FALSE; } dwLength = sizeof(RegSerial); @@ -1021,7 +1021,7 @@ TRASH_CanTrashFile(LPCWSTR wszPath) /* FIXME * the current volume was mounted on a different path */ - FIXME("mismatched serial volume number"); + FIXME("mismatched serial volume number\n"); RegCloseKey(hKey); return FALSE; }