[ros-diffs] [mkupfer] 34966: Patch by Gregor Schneider a.k.a DosX - use line breaks in debug output

mkupfer at svn.reactos.org mkupfer at svn.reactos.org
Wed Jul 30 23:16:04 CEST 2008


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/recyclebin.c?rev=34966&r1=34965&r2=34966&view=diff
==============================================================================
--- 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;
        }



More information about the Ros-diffs mailing list