Update list.c

This commit is contained in:
Stefan 2017-05-28 15:22:33 +02:00 committed by GitHub
parent c9c2562c14
commit ea9430e28e
1 changed files with 1 additions and 1 deletions

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