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:
proski 2009-06-11 19:11:25 +00:00
parent 25ad23236f
commit 8ada9bc12e
2 changed files with 6 additions and 1 deletions

View file

@ -25,7 +25,7 @@ const char bochs_shutdown[] = "Shutdown";
void
grub_halt (void)
{
int i;
unsigned int i;
/* Disable interrupts. */
__asm__ __volatile__ ("cli");