mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[WIN32SS:USER] Do not write error message at end of enumeration in UserEnumDisplayDevices()
This commit is contained in:
parent
cd8305494c
commit
2915d16543
1 changed files with 4 additions and 1 deletions
|
@ -254,7 +254,10 @@ UserEnumDisplayDevices(
|
||||||
if (!pGraphicsDevice)
|
if (!pGraphicsDevice)
|
||||||
{
|
{
|
||||||
/* No device found */
|
/* No device found */
|
||||||
ERR("No GRAPHICS_DEVICE found for '%wZ', iDevNum %lu\n", pustrDevice, iDevNum);
|
if (iDevNum == 0)
|
||||||
|
ERR("No GRAPHICS_DEVICE found for '%wZ', iDevNum %lu\n", pustrDevice, iDevNum);
|
||||||
|
else
|
||||||
|
TRACE("No GRAPHICS_DEVICE found for '%wZ', iDevNum %lu\n", pustrDevice, iDevNum);
|
||||||
return STATUS_UNSUCCESSFUL;
|
return STATUS_UNSUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue