mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:15:59 +00:00
[FREELDR]
Fix compilation on ARM. svn path=/trunk/; revision=75404
This commit is contained in:
parent
ed2b3728b6
commit
536fd901af
2 changed files with 4 additions and 0 deletions
|
@ -388,6 +388,8 @@ VOID OptionMenuReboot(VOID)
|
|||
{
|
||||
UiMessageBox("The system will now reboot.");
|
||||
|
||||
#if defined(__i386__) || defined(_M_AMD64)
|
||||
DiskStopFloppyMotor();
|
||||
#endif
|
||||
Reboot();
|
||||
}
|
||||
|
|
|
@ -61,7 +61,9 @@ VOID __cdecl BootMain(IN PCCH CmdLine)
|
|||
|
||||
Quit:
|
||||
/* If we reach this point, something went wrong before, therefore reboot */
|
||||
#if defined(__i386__) || defined(_M_AMD64)
|
||||
DiskStopFloppyMotor();
|
||||
#endif
|
||||
Reboot();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue