]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/commands/efi/lsefisystab.c: Use %lld to show num_table_entries.
authorVladimir Serbinenko <phcoder@gmail.com>
Sun, 15 Dec 2013 13:42:19 +0000 (14:42 +0100)
committerVladimir Serbinenko <phcoder@gmail.com>
Sun, 15 Dec 2013 13:42:19 +0000 (14:42 +0100)
ChangeLog
grub-core/commands/efi/lsefisystab.c

index 0f791129376371dfb15312c60dae435010a04cfe..9548d982e96d8150879f1e10c7f13b4bd8e52876 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-12-15  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * grub-core/commands/efi/lsefisystab.c: Use %lld to show
+       num_table_entries.
+
 2013-12-15  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * include/grub/test.h: Use gnu_printf rather than printf on GRUB
index b2359253adc52487b16b2877895d26ef1581895c..eda8c5ff3f3ad1990e0fe5403af073a5980ad34f 100644 (file)
@@ -71,7 +71,7 @@ grub_cmd_lsefisystab (struct grub_command *cmd __attribute__ ((unused)),
 
   grub_printf (", Version=%x\n", st->firmware_revision);
 
-  grub_printf ("%ld tables:\n", st->num_table_entries);
+  grub_printf ("%lld tables:\n", (long long) st->num_table_entries);
   t = st->configuration_table;
   for (i = 0; i < st->num_table_entries; i++)
     {