[VIDEOPRT]
authorThomas Faber <thomas.faber@reactos.org>
Sun, 30 Mar 2014 09:53:29 +0000 (09:53 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Sun, 30 Mar 2014 09:53:29 +0000 (09:53 +0000)
- Add missing newlines to debug prints

svn path=/trunk/; revision=62586

reactos/win32ss/drivers/videoprt/dispatch.c
reactos/win32ss/drivers/videoprt/registry.c

index 5d6fac7..e334f5d 100644 (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;
         }
index 7f62a4a..2a74018 100644 (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 */