diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2016-01-16 00:38:31 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2016-01-16 00:38:31 +0000 |
commit | c92edff1d0eca7d7394edc3583d87f8c962a8343 (patch) | |
tree | 88445511bc05a92a5809cd1879ca85cfacc2b7dd | |
parent | 928a32a171764b7943ca1fe2e418f7f6cfbabb14 (diff) | |
download | imv-c92edff1d0eca7d7394edc3583d87f8c962a8343.tar.gz |
Provide some feedback to users when no arguments are given
-rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -167,6 +167,7 @@ int main(int argc, char** argv) /* if the user asked us to load paths from stdin, now is the time */ if(g_options.stdin_list) { + fprintf(stderr, "Reading paths from stdin...\n"); char buf[PATH_MAX]; while(fgets(buf, sizeof(buf), stdin)) { size_t len = strlen(buf); |