Make these two "registry_callback() failed" messages different, so it is easier to see where our 64-Bit Buildslave fails

svn path=/trunk/; revision=28826
This commit is contained in:
Colin Finck
2007-09-03 20:54:54 +00:00
parent 8f37a9e42e
commit 091a80b5ff
+2 -2
View File
@@ -477,12 +477,12 @@ ImportRegistryFile(PCHAR FileName)
if (!registry_callback (hInf, "DelReg", TRUE))
{
DPRINT1 ("registry_callback() failed\n");
DPRINT1 ("registry_callback() for DelReg failed\n");
}
if (!registry_callback (hInf, "AddReg", FALSE))
{
DPRINT1 ("registry_callback() failed\n");
DPRINT1 ("registry_callback() for AddReg failed\n");
}
InfHostCloseFile (hInf);