summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/dwarf.c10
2 files changed, 10 insertions, 5 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index eb02c5e477..5c495c15a6 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2010-12-15 Kai Tietz <kai.tietz@onevision.com>
+
+ * dwarf.c (display_gdb_index): Fix printf types for
+ used formatters.
+
2010-12-12 Peter Breitenlohner <peb@mppmu.mpg.de>
PR binutils/12306
diff --git a/binutils/dwarf.c b/binutils/dwarf.c
index dd5ccbc353..6d1b65ba64 100644
--- a/binutils/dwarf.c
+++ b/binutils/dwarf.c
@@ -4889,13 +4889,13 @@ display_gdb_index (struct dwarf_section *section,
}
version = byte_get_little_endian (start, 4);
- printf (_("Version %d\n"), version);
+ printf (_("Version %ld\n"), (long) version);
/* Prior versions are obsolete, and future versions may not be
backwards compatible. */
if (version != 3)
{
- warn (_("Unsupported version %u.\n"), version);
+ warn (_("Unsupported version %lu.\n"), (unsigned long) version);
return 0;
}
@@ -4960,7 +4960,7 @@ display_gdb_index (struct dwarf_section *section,
print_dwarf_vma (low, 8);
print_dwarf_vma (high, 8);
- printf (_("%u\n"), cu_index);
+ printf (_("%lu\n"), (unsigned long) cu_index);
}
printf (_("\nSymbol table:\n"));
@@ -4982,9 +4982,9 @@ display_gdb_index (struct dwarf_section *section,
cu = byte_get_little_endian (constant_pool + cu_vector_offset + 4 + j * 4, 4);
/* Convert to TU number if it's for a type unit. */
if (cu >= cu_list_elements)
- printf (" T%u", cu - cu_list_elements);
+ printf (" T%lu", (unsigned long) (cu - cu_list_elements));
else
- printf (" %u", cu);
+ printf (" %lu", (unsigned long) cu);
}
printf ("\n");
}