Skip to content
Snippets Groups Projects
Commit 3f38fadf authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

list.c: printf %s\n -> puts

parent beab99e9
No related branches found
No related tags found
No related merge requests found
...@@ -85,14 +85,14 @@ void real_loadables_mode(int loadable) ...@@ -85,14 +85,14 @@ void real_loadables_mode(int loadable)
if (feh_load_image(&im, file)) { if (feh_load_image(&im, file)) {
/* loaded ok */ /* loaded ok */
if (loadable) { if (loadable) {
fprintf(stdout, "%s\n", file->filename); puts(file->filename);
feh_action_run(file, opt.actions[0]); feh_action_run(file, opt.actions[0]);
} }
gib_imlib_free_image_and_decache(im); gib_imlib_free_image_and_decache(im);
} else { } else {
/* Oh dear. */ /* Oh dear. */
if (!loadable) { if (!loadable) {
fprintf(stdout, "%s\n", file->filename); puts(file->filename);
feh_action_run(file, opt.actions[0]); feh_action_run(file, opt.actions[0]);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment