summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2007-06-15 21:58:49 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2007-06-15 21:58:49 +0200
commit06da83bc3a969c18ee99aa1b3ea511bf4c3763ff (patch)
treebe80d3dec4cc843f1ca2c9a6a868373f0e8f550a
parentd440e6dd7cb3db1f0c7b6723c098c5c31c530919 (diff)
inotail.c: s/Inotify/inotify/
-rw-r--r--inotail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/inotail.c b/inotail.c
index 967a0fa..aecbc1a 100644
--- a/inotail.c
+++ b/inotail.c
@@ -355,10 +355,10 @@ static int watch_files(struct file_struct *files, int n_files)
ifd = inotify_init();
if (errno == ENOSYS) {
- fprintf(stderr, "Error: Inotify is not supported by the kernel you're currently running.\n");
+ fprintf(stderr, "Error: inotify is not supported by the kernel you're currently running.\n");
exit(EXIT_FAILURE);
} else if (unlikely(ifd < 0)) {
- fprintf(stderr, "Error: Could not initialize Inotify (%s)\n", strerror(errno));
+ fprintf(stderr, "Error: Could not initialize inotify (%s)\n", strerror(errno));
exit(EXIT_FAILURE);
}