]> git.sur5r.net Git - cc65/commitdiff
Update list.c
authorStefan <stefan.haubenthal@gmail.com>
Sun, 28 May 2017 13:13:43 +0000 (15:13 +0200)
committerGitHub <noreply@github.com>
Sun, 28 May 2017 13:13:43 +0000 (15:13 +0200)
src/ar65/list.c

index e307e70a8400487dae1ffb5a7dfe03b0faa253e3..d65ad51e524f0f2c9d7e851ceb3cf98fa112c95c 100644 (file)
@@ -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);