mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Patch by Gregor Schneider a.k.a DosX
- use line breaks in debug output svn path=/trunk/; revision=34966
This commit is contained in:
parent
aabe1e5462
commit
dd7dc24c8d
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue