File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -181,19 +181,19 @@ pCDevSettings_GetDeviceInstanceId(const WCHAR *pszDevice)
181
181
CM_LOCATE_DEVNODE_NORMAL );
182
182
if (cr == CR_SUCCESS )
183
183
{
184
- DbgPrint ("Success1\n" );
184
+ DPRINT1 ("Success1\n" );
185
185
cr = CM_Get_Device_ID_Size (& BufLen ,
186
186
DevInst ,
187
187
0 );
188
188
if (cr == CR_SUCCESS )
189
189
{
190
- DbgPrint ("Success2\n" );
190
+ DPRINT1 ("Success2\n" );
191
191
lpDevInstId = LocalAlloc (LMEM_FIXED ,
192
192
(BufLen + 1 ) * sizeof (WCHAR ));
193
193
194
194
if (lpDevInstId != NULL )
195
195
{
196
- DbgPrint ("Success3\n" );
196
+ DPRINT1 ("Success3\n" );
197
197
cr = CM_Get_Device_IDW (DevInst ,
198
198
lpDevInstId ,
199
199
BufLen ,
@@ -204,7 +204,7 @@ pCDevSettings_GetDeviceInstanceId(const WCHAR *pszDevice)
204
204
LocalFree ((HLOCAL )lpDevInstId );
205
205
lpDevInstId = NULL ;
206
206
}
207
- DbgPrint ("instance id: %ws\n" , lpDevInstId );
207
+ DPRINT1 ("instance id: %ws\n" , lpDevInstId );
208
208
}
209
209
}
210
210
}
You can’t perform that action at this time.
0 commit comments