* grub-core/loader/arm64/linux.c: Remove redundant "0x".
authorFu Wei <fu.wei@linaro.org>
Wed, 26 Mar 2014 07:13:07 +0000 (08:13 +0100)
committerVladimir Serbinenko <phcoder@gmail.com>
Wed, 26 Mar 2014 07:13:07 +0000 (08:13 +0100)
ChangeLog
grub-core/loader/arm64/linux.c

index 770269c..44ce649 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-03-26  Fu Wei <fu.wei@linaro.org>
+
+       * grub-core/loader/arm64/linux.c: Remove redundant "0x".
+
 2014-02-28  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * include/grub/i386/openbsd_bootarg.h: Add addr and frequency fields.
index 65129c2..f1d10a1 100644 (file)
@@ -68,7 +68,7 @@ get_firmware_fdt (void)
     if (grub_memcmp (&tables[i].vendor_guid, &fdt_guid, sizeof (fdt_guid)) == 0)
       {
        firmware_fdt = tables[i].vendor_table;
-       grub_dprintf ("linux", "found registered FDT @ 0x%p\n", firmware_fdt);
+       grub_dprintf ("linux", "found registered FDT @ %p\n", firmware_fdt);
        break;
       }