[VIDEOPRT]

- Add missing newlines to debug prints

svn path=/trunk/; revision=62586
This commit is contained in:
Thomas Faber 2014-03-30 09:53:29 +00:00
parent a083c95ceb
commit 7528e5d671
2 changed files with 5 additions and 5 deletions

View file

@ -327,7 +327,7 @@ VideoPortUseDeviceInSesion(
}
else
{
ERR_(VIDEOPRT, "Requested to set session, but session is already set to: 0x%lx",
ERR_(VIDEOPRT, "Requested to set session, but session is already set to: 0x%lx\n",
DeviceExtension->SessionId);
SessionState->bSuccess = FALSE;
}

View file

@ -309,7 +309,7 @@ IntSetupDeviceSettingsKey(
&DevInstRegKey);
if (Status != STATUS_SUCCESS)
{
ERR_(VIDEOPRT, "Failed to open device software key. Status 0x%lx", Status);
ERR_(VIDEOPRT, "Failed to open device software key. Status 0x%lx\n", Status);
return Status;
}
@ -326,7 +326,7 @@ IntSetupDeviceSettingsKey(
if (Status != STATUS_SUCCESS)
{
ERR_(VIDEOPRT, "Failed to open settings key. Status 0x%lx", Status);
ERR_(VIDEOPRT, "Failed to open settings key. Status 0x%lx\n", Status);
return Status;
}
@ -339,7 +339,7 @@ IntSetupDeviceSettingsKey(
Status = ZwOpenKey(&SourceKeyHandle, KEY_WRITE, &ObjectAttributes);
if (Status != STATUS_SUCCESS)
{
ERR_(VIDEOPRT, "ZwOpenKey failed for settings key: status 0x%lx", Status);
ERR_(VIDEOPRT, "ZwOpenKey failed for settings key: status 0x%lx\n", Status);
ObCloseHandle(DestKeyHandle, KernelMode);
return Status;
}
@ -615,7 +615,7 @@ IntCreateRegistryPath(
}
else
{
WARN_(VIDEOPRT, "Unparsable registry path %wZ", DriverRegistryPath);
WARN_(VIDEOPRT, "Unparsable registry path %wZ\n", DriverRegistryPath);
}
/* If path doesn't point to *ControlSet*, use DriverRegistryPath directly */