From d7d1e62a378dd1e69fc36cf0796f4fc8d6bef47d Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Fri, 22 Sep 2017 17:05:16 -0300 Subject: [PATCH] space after cast --- binutils/dwarf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 1b5b27c61a1..da16f32511e 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, ""); } -- 2.47.2