From: Vladimir Serbinenko Date: Sat, 14 Dec 2013 20:54:37 +0000 (+0100) Subject: * grub-core/osdep/windows/blocklist.c: Add missing cast in printf X-Git-Tag: grub-2.02-beta1~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b8a162516d9bdedb811425f767e1574a6e4098f;p=thirdparty%2Fgrub.git * grub-core/osdep/windows/blocklist.c: Add missing cast in printf invocation. --- diff --git a/ChangeLog b/ChangeLog index 1e18a8641..249422d4a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-12-14 Vladimir Serbinenko + + * grub-core/osdep/windows/blocklist.c: Add missing cast in printf + invocation. + 2013-12-14 Vladimir Serbinenko * util/config.c: Remove trailing newline from distributor in simple diff --git a/grub-core/osdep/windows/blocklist.c b/grub-core/osdep/windows/blocklist.c index b9119ec3e..d2003854f 100644 --- a/grub-core/osdep/windows/blocklist.c +++ b/grub-core/osdep/windows/blocklist.c @@ -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);