diff --git a/ChangeLog b/ChangeLog index 14bff8173..784d737c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-01-13 Colin Watson + + * util/grub-mkimage.c (generate_image): Fix "size of public key" + info message. + 2013-01-13 Colin Watson Remove nested functions from PCI iterators. diff --git a/util/grub-mkimage.c b/util/grub-mkimage.c index 23a99706c..d0eecf2f6 100644 --- a/util/grub-mkimage.c +++ b/util/grub-mkimage.c @@ -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); } }