From 0f45e8a2794ccf64f6993ca8e84ce4125d7ac9a2 Mon Sep 17 00:00:00 2001 From: Kevin Cernekee Date: Sun, 8 Apr 2012 11:42:59 -0700 Subject: inotify_rm_watch: Change second argument to int 2009-01-30 Ulrich Drepper [BZ #7040] * sysdeps/unix/sysv/linux/sys/inotify.h: Second parameter of inotify_rm_watch should have type int. This change allows us to copy inotify.h verbatim from glibc into uClibc. Signed-off-by: Kevin Cernekee Signed-off-by: Mike Frysinger --- libc/sysdeps/linux/common/inotify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/sysdeps/linux/common/inotify.c') diff --git a/libc/sysdeps/linux/common/inotify.c b/libc/sysdeps/linux/common/inotify.c index e35f0430c..e2f383671 100644 --- a/libc/sysdeps/linux/common/inotify.c +++ b/libc/sysdeps/linux/common/inotify.c @@ -24,5 +24,5 @@ _syscall3(int, inotify_add_watch, int, fd, const char *, path, uint32_t, mask) #endif #ifdef __NR_inotify_rm_watch -_syscall2(int, inotify_rm_watch, int, fd, uint32_t, wd) +_syscall2(int, inotify_rm_watch, int, fd, int, wd) #endif -- cgit v1.2.3