diff options
Diffstat (limited to 'binutils/dwarf.c')
-rw-r--r-- | binutils/dwarf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 1b5b27c..da16f32 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -256,9 +256,9 @@ print_dwarf_view (dwarf_vma value, unsigned num_bytes, int force) else len = num_bytes * 2; - assert (value == (unsigned long)value); + assert (value == (unsigned long) value); if (value || force) - printf ("v%0*lx ", len - 1, (unsigned long)value); + printf ("v%0*lx ", len - 1, (unsigned long) value); else printf ("%*s", len + 1, ""); } |