]> git.sur5r.net Git - cc65/commitdiff
Use verbosity
authorStefan <stefan.haubenthal@gmail.com>
Sat, 27 May 2017 22:29:53 +0000 (00:29 +0200)
committerGitHub <noreply@github.com>
Sat, 27 May 2017 22:29:53 +0000 (00:29 +0200)
src/ar65/list.c

index 6562998605e616b91c7e832357334613ddc1416e..496bbcde0994e6c1a3bd397ae9b3604e0b9ae202 100644 (file)
@@ -36,6 +36,9 @@
 #include <stdio.h>
 #include <stdlib.h>
 
+/* common */
+#include "print.h"
+
 /* ar65 */
 #include "error.h"
 #include "library.h"
@@ -73,6 +76,10 @@ void ListObjFiles (int argc, char* argv [])
         /* Get the entry */
         O = CollConstAt (&ObjPool, I);
 
+        /* Print the size */
+        if (Verbosity > 0) {
+            printf ("%5ld ", O->Size);
+        }
         /* Print the name */
         printf ("%s\n", O->Name);