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

@ -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

View file

@ -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");