mirror of
https://git.proxmox.com/git/grub2
synced 2025-08-14 22:27:09 +00:00
2009-06-11 Pavel Roskin <proski@gnu.org>
* kern/i386/halt.c (grub_halt): Make `i' unsigned to fix a warning.
This commit is contained in:
parent
25ad23236f
commit
8ada9bc12e
@ -1,3 +1,8 @@
|
||||
2009-06-11 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* kern/i386/halt.c (grub_halt): Make `i' unsigned to fix a
|
||||
warning.
|
||||
|
||||
2009-06-11 Felix Zielcke <fzielcke@z-51.de>
|
||||
|
||||
* util/grub.d/30_os-prober.in: Fix a comment. Source
|
||||
|
@ -25,7 +25,7 @@ const char bochs_shutdown[] = "Shutdown";
|
||||
void
|
||||
grub_halt (void)
|
||||
{
|
||||
int i;
|
||||
unsigned int i;
|
||||
|
||||
/* Disable interrupts. */
|
||||
__asm__ __volatile__ ("cli");
|
||||
|
Loading…
Reference in New Issue
Block a user