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
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2009-06-11 Felix Zielcke <fzielcke@z-51.de>
|
||||||
|
|
||||||
* util/grub.d/30_os-prober.in: Fix a comment. Source
|
* util/grub.d/30_os-prober.in: Fix a comment. Source
|
||||||
|
|
|
@ -25,7 +25,7 @@ const char bochs_shutdown[] = "Shutdown";
|
||||||
void
|
void
|
||||||
grub_halt (void)
|
grub_halt (void)
|
||||||
{
|
{
|
||||||
int i;
|
unsigned int i;
|
||||||
|
|
||||||
/* Disable interrupts. */
|
/* Disable interrupts. */
|
||||||
__asm__ __volatile__ ("cli");
|
__asm__ __volatile__ ("cli");
|
||||||
|
|
Loading…
Reference in a new issue