From c9c2562c14aa296c69548bd089f5ba689abf2156 Mon Sep 17 00:00:00 2001 From: Stefan Date: Sun, 28 May 2017 15:13:43 +0200 Subject: [PATCH] Update list.c --- src/ar65/list.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/ar65/list.c b/src/ar65/list.c index e307e70a8..d65ad51e5 100644 --- a/src/ar65/list.c +++ b/src/ar65/list.c @@ -76,10 +76,8 @@ void ListObjFiles (int argc, char* argv []) /* Get the entry */ O = CollConstAt (&ObjPool, I); - /* Print the size */ - if (Verbosity > 0) { - Print (stdout, 1, "%5lu ", O->Size); - } + /* Print the size if verbose */ + Print (stdout, 1, "%5lu ", O->Size); /* Print the name */ printf ("%s\n", O->Name); -- 2.39.5