Fix indentation

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Yuri Benditovich <yuri.benditovich@daynix.com>
This commit is contained in:
Frediano Ziglio 2016-09-12 22:59:07 +01:00
parent f013c0c5fc
commit 076c9f2085

View File

@ -2489,7 +2489,7 @@ NTSTATUS VgaDevice::GetModeList(DXGK_DISPLAY_INFORMATION* pDispInfo)
for (ModeCount = 0; ; ModeCount++) for (ModeCount = 0; ; ModeCount++)
{ {
/* Read the VBE mode number. */ /* Read the VBE mode number. */
Status = x86BiosReadMemory ( Status = x86BiosReadMemory (
HIWORD(VbeInfo.VideoModePtr), HIWORD(VbeInfo.VideoModePtr),
LOWORD(VbeInfo.VideoModePtr) + (ModeCount << 1), LOWORD(VbeInfo.VideoModePtr) + (ModeCount << 1),
@ -2501,12 +2501,12 @@ NTSTATUS VgaDevice::GetModeList(DXGK_DISPLAY_INFORMATION* pDispInfo)
DbgPrint(TRACE_LEVEL_ERROR, ("x86BiosReadMemory failed with Status: 0x%X\n", Status)); DbgPrint(TRACE_LEVEL_ERROR, ("x86BiosReadMemory failed with Status: 0x%X\n", Status));
break; break;
} }
/* End of list? */ /* End of list? */
if (ModeTemp == 0xFFFF || ModeTemp == 0) if (ModeTemp == 0xFFFF || ModeTemp == 0)
{ {
break; break;
} }
} }
DbgPrint(TRACE_LEVEL_INFORMATION, ("ModeCount %d\n", ModeCount)); DbgPrint(TRACE_LEVEL_INFORMATION, ("ModeCount %d\n", ModeCount));