* grub-core/osdep/windows/blocklist.c: Add missing cast in printf

invocation.
This commit is contained in:
Vladimir Serbinenko 2013-12-14 21:54:37 +01:00
parent 954c723acc
commit 6b8a162516
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/osdep/windows/blocklist.c: Add missing cast in printf
invocation.
2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
* util/config.c: Remove trailing newline from distributor in simple

View file

@ -84,7 +84,8 @@ grub_install_get_blocklist (grub_device_t root_dev,
grub_util_error ("unsupported fs for blocklist under windows: %s",
fs->name);
grub_util_info ("sec_per_lcn = %lld, first_lcn=%lld", sec_per_lcn, first_lcn);
grub_util_info ("sec_per_lcn = %lld, first_lcn=%lld",
(long long) sec_per_lcn, (long long) first_lcn);
first_lcn += grub_partition_get_start (root_dev->disk->partition);