[ros-diffs] [gadamopoulos] 53307: [desk] - Use DPRINT1 instead of DbgPrint

gadamopoulos at svn.reactos.org gadamopoulos at svn.reactos.org
Thu Aug 18 20:41:18 UTC 2011


Author: gadamopoulos
Date: Thu Aug 18 20:41:16 2011
New Revision: 53307

URL: http://svn.reactos.org/svn/reactos?rev=53307&view=rev
Log:
[desk]
- Use DPRINT1 instead of DbgPrint

Modified:
    branches/GSoC_2011/ThemesSupport/dll/cpl/desk/devsett.c

Modified: branches/GSoC_2011/ThemesSupport/dll/cpl/desk/devsett.c
URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/ThemesSupport/dll/cpl/desk/devsett.c?rev=53307&r1=53306&r2=53307&view=diff
==============================================================================
--- branches/GSoC_2011/ThemesSupport/dll/cpl/desk/devsett.c [iso-8859-1] (original)
+++ branches/GSoC_2011/ThemesSupport/dll/cpl/desk/devsett.c [iso-8859-1] Thu Aug 18 20:41:16 2011
@@ -181,19 +181,19 @@
                             CM_LOCATE_DEVNODE_NORMAL);
     if (cr == CR_SUCCESS)
     {
-        DbgPrint("Success1\n");
+        DPRINT1("Success1\n");
         cr = CM_Get_Device_ID_Size(&BufLen,
                                    DevInst,
                                    0);
         if (cr == CR_SUCCESS)
         {
-            DbgPrint("Success2\n");
+            DPRINT1("Success2\n");
             lpDevInstId = LocalAlloc(LMEM_FIXED,
                                      (BufLen + 1) * sizeof(WCHAR));
 
             if (lpDevInstId != NULL)
             {
-                DbgPrint("Success3\n");
+                DPRINT1("Success3\n");
                 cr = CM_Get_Device_IDW(DevInst,
                                        lpDevInstId,
                                        BufLen,
@@ -204,7 +204,7 @@
                     LocalFree((HLOCAL)lpDevInstId);
                     lpDevInstId = NULL;
                 }
-                DbgPrint("instance id: %ws\n", lpDevInstId);
+                DPRINT1("instance id: %ws\n", lpDevInstId);
             }
         }
     }




More information about the Ros-diffs mailing list