diff --git a/src/ar65/list.c b/src/ar65/list.c index 656299860..367c950dc 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,8 +76,10 @@ void ListObjFiles (int argc, char* argv []) /* Get the entry */ O = CollConstAt (&ObjPool, I); + /* Print the size if verbose */ + Print (stdout, 1, "%5lu ", O->Size); /* Print the name */ - printf ("%s\n", O->Name); + puts (O->Name); }