From: Vladimir Serbinenko Date: Sun, 15 Dec 2013 13:42:19 +0000 (+0100) Subject: * grub-core/commands/efi/lsefisystab.c: Use %lld to show num_table_entries. X-Git-Tag: grub-2.02-beta1~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d99af4f0e885711f011a56506ffcfc1e318b94ef;p=thirdparty%2Fgrub.git * grub-core/commands/efi/lsefisystab.c: Use %lld to show num_table_entries. --- diff --git a/ChangeLog b/ChangeLog index 0f7911293..9548d982e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-12-15 Vladimir Serbinenko + + * grub-core/commands/efi/lsefisystab.c: Use %lld to show + num_table_entries. + 2013-12-15 Vladimir Serbinenko * include/grub/test.h: Use gnu_printf rather than printf on GRUB diff --git a/grub-core/commands/efi/lsefisystab.c b/grub-core/commands/efi/lsefisystab.c index b2359253a..eda8c5ff3 100644 --- a/grub-core/commands/efi/lsefisystab.c +++ b/grub-core/commands/efi/lsefisystab.c @@ -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++) {