From: Stefan Date: Sat, 27 May 2017 22:29:53 +0000 (+0200) Subject: Use verbosity X-Git-Tag: V2.17~127^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ff339393859558323553aea89c1ecc90fcf55d01;p=cc65 Use verbosity --- diff --git a/src/ar65/list.c b/src/ar65/list.c index 656299860..496bbcde0 100644 --- a/src/ar65/list.c +++ b/src/ar65/list.c @@ -36,6 +36,9 @@ #include #include +/* 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);