From a124f7c67d9ac6d4c46d97a3df300a01acc7e030 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Mon, 14 Jan 2013 20:48:05 +0400 Subject: [PATCH] fsnotify: Rename collect_mark to collect_inotify_mark We will need collect_fanotify_mark helper so unify naming scheme. Signed-off-by: Cyrill Gorcunov Signed-off-by: Pavel Emelyanov --- fsnotify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fsnotify.c b/fsnotify.c index 55ee5a520..47e234eda 100644 --- a/fsnotify.c +++ b/fsnotify.c @@ -254,7 +254,7 @@ static struct file_desc_ops inotify_desc_ops = { .open = open_inotify_fd, }; -static int collect_mark(struct fsnotify_mark_info *mark) +static int collect_inotify_mark(struct fsnotify_mark_info *mark) { struct fsnotify_file_info *p; @@ -288,7 +288,7 @@ static int collect_one_wd(void *o, ProtobufCMessage *msg) struct fsnotify_mark_info *mark = o; mark->iwe = pb_msg(msg, InotifyWdEntry); - return collect_mark(mark); + return collect_inotify_mark(mark); } int collect_inotify(void)