1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Use verbosity

This commit is contained in:
Stefan 2017-05-28 00:29:53 +02:00 committed by GitHub
parent 035baa49bd
commit ff33939385

View 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);