diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2017-09-22 17:05:16 -0300 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2017-09-22 17:05:16 -0300 |
commit | d7d1e62a378dd1e69fc36cf0796f4fc8d6bef47d (patch) | |
tree | 5e58223969418bca5e9e0528d650ff5f59b504e1 | |
parent | 9e0703de64a6dd4deae2ebd569955f14337f2710 (diff) | |
download | gdb-d7d1e62a378dd1e69fc36cf0796f4fc8d6bef47d.zip gdb-d7d1e62a378dd1e69fc36cf0796f4fc8d6bef47d.tar.gz gdb-d7d1e62a378dd1e69fc36cf0796f4fc8d6bef47d.tar.bz2 |
space after cast
-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, ""); } |