From: Stefan Date: Sun, 28 May 2017 13:13:43 +0000 (+0200) Subject: Update list.c X-Git-Tag: V2.17~127^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c9c2562c14aa296c69548bd089f5ba689abf2156;p=cc65 Update list.c --- 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);