* grub-core/commands/efi/lsefisystab.c: Use %lld to show num_table_entries.
This commit is contained in:
parent
7104368446
commit
d99af4f0e8
2 changed files with 6 additions and 1 deletions
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue