[ros-diffs] [greatlrd] 26320: DO not waring if no keyboard layout does not exists or loading, I change the msg from DPRINT1 to DRPINT

greatlrd at svn.reactos.org greatlrd at svn.reactos.org
Wed Apr 11 09:01:45 CEST 2007


Author: greatlrd
Date: Wed Apr 11 11:01:44 2007
New Revision: 26320

URL: http://svn.reactos.org/svn/reactos?rev=26320&view=rev
Log:
DO not waring if no keyboard layout does not exists or loading, I change the msg from DPRINT1 to DRPINT

Modified:
    trunk/reactos/subsystems/win32/win32k/ntuser/kbdlayout.c

Modified: trunk/reactos/subsystems/win32/win32k/ntuser/kbdlayout.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ntuser/kbdlayout.c?rev=26320&r1=26319&r2=26320&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/kbdlayout.c (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/kbdlayout.c Wed Apr 11 11:01:44 2007
@@ -144,7 +144,7 @@
    
    if(!NT_SUCCESS(Status))
    {
-      DPRINT1("Can't get layout filename for %wZ. (%08lx)\n", klid, Status);
+      DPRINT("Can't get layout filename for %wZ. (%08lx)\n", klid, Status);
       return FALSE;
    }
    
@@ -210,7 +210,7 @@
    
    if(!UserLoadKbdDll(NewKbl->Name, &NewKbl->hModule, &NewKbl->KBTables))
    {
-      DPRINT1("%s: failed to load %x dll!\n", __FUNCTION__, LocaleId);
+      DPRINT("%s: failed to load %x dll!\n", __FUNCTION__, LocaleId);
       ExFreePool(NewKbl);
       return NULL;
    }
@@ -300,7 +300,7 @@
    
    if(!pKbl)
    {
-      DPRINT1("Failed to load %x!!! Returning any availableKL.\n", LocaleId);
+      DPRINT("Failed to load %x!!! Returning any availableKL.\n", LocaleId);
       return KBLList;
    }
    




More information about the Ros-diffs mailing list