Whitespace fixes.

svn path=/trunk/; revision=65464
This commit is contained in:
Hermès Bélusca-Maïto 2014-11-23 15:57:13 +00:00
parent d35b779e48
commit 72074af697
2 changed files with 8 additions and 7 deletions

View file

@ -277,9 +277,9 @@ PopGracefulShutdown(IN PVOID Context)
/* Note that modified pages should be written here (MiShutdownSystem) */
#ifdef NEWCC
/* Flush all user files before we start shutting down IO */
/* This is where modified pages are written back by the IO manager */
CcShutdownSystem();
/* Flush all user files before we start shutting down IO */
/* This is where modified pages are written back by the IO manager */
CcShutdownSystem();
#endif
/* In this step, the I/O manager does last-chance shutdown notification */

View file

@ -682,7 +682,8 @@ NtPowerInformation(IN POWER_INFORMATION_LEVEL PowerInformationLevel,
Status = STATUS_SUCCESS;
break;
}
case SystemPowerCapabilities:
case SystemPowerCapabilities:
{
PSYSTEM_POWER_CAPABILITIES PowerCapabilities = (PSYSTEM_POWER_CAPABILITIES)OutputBuffer;
@ -794,8 +795,8 @@ NtSetThreadExecutionState(IN EXECUTION_STATE esFlags,
NTSTATUS
NTAPI
NtSetSystemPowerState(IN POWER_ACTION SystemAction,
IN SYSTEM_POWER_STATE MinSystemState,
IN ULONG Flags)
IN SYSTEM_POWER_STATE MinSystemState,
IN ULONG Flags)
{
KPROCESSOR_MODE PreviousMode = KeGetPreviousMode();
POP_POWER_ACTION Action = {0};
@ -834,7 +835,7 @@ NtSetSystemPowerState(IN POWER_ACTION SystemAction,
}
/* Do it as a kernel-mode caller for consistency with system state */
return ZwSetSystemPowerState (SystemAction, MinSystemState, Flags);
return ZwSetSystemPowerState(SystemAction, MinSystemState, Flags);
}
/* Read policy settings (partial shutdown vs. full shutdown) */