aboutsummaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/commands.c b/commands.c
index 3e108a4..0ab1944 100644
--- a/commands.c
+++ b/commands.c
@@ -26,6 +26,7 @@
#include "commands.h"
#include "image.h"
+#include "options.h"
#include "thumbs.h"
#include "util.h"
#include "config.h"
@@ -57,6 +58,12 @@ const int ss_delays[] = {
bool it_quit(arg_t a)
{
+ unsigned int i;
+
+ if (options->to_stdout) {
+ for (i = 0; i < filecnt; i++)
+ printf("%s\n", files[i].name);
+ }
cleanup();
exit(EXIT_SUCCESS);
}