Skip to content

Commit 677721e

Browse files
committed
[desk]
- Use DPRINT1 instead of DbgPrint svn path=/branches/GSoC_2011/ThemesSupport/; revision=53307
1 parent e1d25a8 commit 677721e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dll/cpl/desk/devsett.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,19 +181,19 @@ pCDevSettings_GetDeviceInstanceId(const WCHAR *pszDevice)
181181
CM_LOCATE_DEVNODE_NORMAL);
182182
if (cr == CR_SUCCESS)
183183
{
184-
DbgPrint("Success1\n");
184+
DPRINT1("Success1\n");
185185
cr = CM_Get_Device_ID_Size(&BufLen,
186186
DevInst,
187187
0);
188188
if (cr == CR_SUCCESS)
189189
{
190-
DbgPrint("Success2\n");
190+
DPRINT1("Success2\n");
191191
lpDevInstId = LocalAlloc(LMEM_FIXED,
192192
(BufLen + 1) * sizeof(WCHAR));
193193

194194
if (lpDevInstId != NULL)
195195
{
196-
DbgPrint("Success3\n");
196+
DPRINT1("Success3\n");
197197
cr = CM_Get_Device_IDW(DevInst,
198198
lpDevInstId,
199199
BufLen,
@@ -204,7 +204,7 @@ pCDevSettings_GetDeviceInstanceId(const WCHAR *pszDevice)
204204
LocalFree((HLOCAL)lpDevInstId);
205205
lpDevInstId = NULL;
206206
}
207-
DbgPrint("instance id: %ws\n", lpDevInstId);
207+
DPRINT1("instance id: %ws\n", lpDevInstId);
208208
}
209209
}
210210
}

0 commit comments

Comments
 (0)