space after cast
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 @@ 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, ""); }