1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 05:29:33 +00:00

Update list.c

This commit is contained in:
Stefan 2017-05-28 15:22:33 +02:00 committed by GitHub
parent c9c2562c14
commit ea9430e28e

View File

@ -79,7 +79,7 @@ void ListObjFiles (int argc, char* argv [])
/* Print the size if verbose */
Print (stdout, 1, "%5lu ", O->Size);
/* Print the name */
printf ("%s\n", O->Name);
puts (O->Name);
}