mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Whitespace fixes.
svn path=/trunk/; revision=65464
This commit is contained in:
parent
d35b779e48
commit
72074af697
2 changed files with 8 additions and 7 deletions
|
@ -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 */
|
||||
|
|
|
@ -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) */
|
||||
|
|
Loading…
Reference in a new issue