diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2007-01-05 19:08:19 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2007-01-05 19:08:19 +0100 |
commit | 3d11760fe04a8563ff0eb12c79c51660f1d7e87d (patch) | |
tree | 25e15fa677a2a235f9ba41f28d2a175fbd51276f /inotail.c | |
parent | a388181df16d237c164ddf79cde6aed58dee6a8e (diff) |
inotail.c: Print version information to stdout
Diffstat (limited to 'inotail.c')
-rw-r--r-- | inotail.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -424,7 +424,7 @@ int main(int argc, char **argv) verbose = 1; break; case 'V': - fprintf(stderr, "%s %s\n", PROGRAM_NAME, VERSION); + fprintf(stdout, "%s %s\n", PROGRAM_NAME, VERSION); return 0; case 'h': usage(EXIT_SUCCESS); |