diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2007-06-15 21:58:49 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2007-06-15 21:58:49 +0200 |
commit | 06da83bc3a969c18ee99aa1b3ea511bf4c3763ff (patch) | |
tree | be80d3dec4cc843f1ca2c9a6a868373f0e8f550a /inotail.c | |
parent | d440e6dd7cb3db1f0c7b6723c098c5c31c530919 (diff) |
inotail.c: s/Inotify/inotify/
Diffstat (limited to 'inotail.c')
-rw-r--r-- | inotail.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |