From ea9430e28edc6b47a20bf3a94d05267a4c383569 Mon Sep 17 00:00:00 2001 From: Stefan Date: Sun, 28 May 2017 15:22:33 +0200 Subject: [PATCH] Update list.c --- src/ar65/list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ar65/list.c b/src/ar65/list.c index d65ad51e5..367c950dc 100644 --- a/src/ar65/list.c +++ b/src/ar65/list.c @@ -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); }