Patch by Gregor Schneider a.k.a DosX

- use line breaks in debug output

svn path=/trunk/; revision=34966
This commit is contained in:
Matthias Kupfer 2008-07-30 21:16:03 +00:00
parent aabe1e5462
commit dd7dc24c8d

View file

@ -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;
}