]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-06-11 Pavel Roskin <proski@gnu.org>
authorproski <proski@localhost>
Thu, 11 Jun 2009 19:11:25 +0000 (19:11 +0000)
committerproski <proski@localhost>
Thu, 11 Jun 2009 19:11:25 +0000 (19:11 +0000)
* kern/i386/halt.c (grub_halt): Make `i' unsigned to fix a
warning.

ChangeLog
kern/i386/halt.c

index a2b0ae1ae17c19cbaad84b72e9394707926acef8..b9a417cc4c3b8b3fed7eae017735c872abd736b5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 3895ae1135f14b022a4076ca1cbf767fc6f3c501..41d3906e6736b8dea00a338470f59a6b46fdc6b8 100644 (file)
@@ -25,7 +25,7 @@ const char bochs_shutdown[] = "Shutdown";
 void
 grub_halt (void)
 {
-  int i;
+  unsigned int i;
 
   /* Disable interrupts.  */
   __asm__ __volatile__ ("cli");