* util/grub-mkimage.c (generate_image): Fix "size of public key"
info message.
This commit is contained in:
parent
ca3a74469a
commit
a45289370a
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-01-13 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
* util/grub-mkimage.c (generate_image): Fix "size of public key"
|
||||
info message.
|
||||
|
||||
2013-01-13 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
Remove nested functions from PCI iterators.
|
||||
|
|
|
@ -740,8 +740,8 @@ generate_image (const char *dir, const char *prefix,
|
|||
{
|
||||
size_t curs;
|
||||
curs = ALIGN_ADDR (grub_util_get_image_size (pubkey_paths[i]));
|
||||
grub_util_info ("the size of public key is 0x%llx",
|
||||
(unsigned long long) pubkey_paths[i]);
|
||||
grub_util_info ("the size of public key %zd is 0x%llx",
|
||||
i, (unsigned long long) curs);
|
||||
total_module_size += curs + sizeof (struct grub_module_header);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue