From: Alexandre Oliva Date: Fri, 22 Sep 2017 20:05:16 +0000 (-0300) Subject: space after cast X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d7d1e62a378dd1e69fc36cf0796f4fc8d6bef47d;p=thirdparty%2Fbinutils-gdb.git space after cast --- 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, ""); }