Author: mkupfer Date: Wed Jul 30 16:16:03 2008 New Revision: 34966
URL: http://svn.reactos.org/svn/reactos?rev=34966&view=rev Log: Patch by Gregor Schneider a.k.a DosX - use line breaks in debug output
Modified: trunk/reactos/dll/win32/shell32/recyclebin.c
Modified: trunk/reactos/dll/win32/shell32/recyclebin.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/recyclebi... ============================================================================== --- trunk/reactos/dll/win32/shell32/recyclebin.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/recyclebin.c [iso-8859-1] Wed Jul 30 16:16:03 2008 @@ -972,7 +972,7 @@ 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 @@ 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 @@ /* 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; }