From 7589822d84ad90367a1014c46824fe2732f95bc8 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 1 Jun 2010 21:26:43 +0100 Subject: [PATCH] more message tidying --- filemon.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/filemon.c b/filemon.c index df0606b..a293fe8 100644 --- a/filemon.c +++ b/filemon.c @@ -83,7 +83,7 @@ static void *filemon_inotify_readable(oop_source *lp, int fd, * unexpected random watch events as normal. It's not a * correctness problem as the watch is just a prod to read a file, * which is harmless if it does not need to be read. */ - dbg("inotify read event on unknown wd=%d", iev.wd); + dbg("filemon inotify: read event with unknown wd=%d", iev.wd); continue; found: @@ -98,13 +98,13 @@ int filemon_method_init(void) { LIST_INIT(filemon_inotify_watches); filemon_inotify_fd= inotify_init(); if (filemon_inotify_fd<0) { - syswarn("filemon/inotify: inotify_init failed"); + syswarn("filemon inotify: inotify_init failed"); return 0; } xsetnonblock(filemon_inotify_fd, 1); loop->on_fd(loop, filemon_inotify_fd, OOP_READ, filemon_inotify_readable, 0); - dbg("filemon inotify init filemon_inotify_fd=%d", filemon_inotify_fd); + dbg("filemon inotify: init filemon_inotify_fd=%d", filemon_inotify_fd); return 1; } @@ -127,7 +127,7 @@ void filemon_method_dump_info(FILE *f) { struct Filemon_Perfile { int dummy; }; int filemon_method_init(void) { - warn("filemon/dummy: no filemon method compiled in"); + warn("filemon dummy: no filemon method compiled in"); return 0; } static void filemon_method_startfile(InputFile *ipf, Filemon_Perfile *pf) { } -- 2.30.2