diff options
author | Kevin Cernekee <cernekee@gmail.com> | 2012-04-08 11:42:59 -0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-04-08 16:03:26 -0400 |
commit | 0f45e8a2794ccf64f6993ca8e84ce4125d7ac9a2 (patch) | |
tree | 854d83bd7b1e6b75f818c66e5f7a47bafa2b776d /libc/sysdeps/linux/common/sys | |
parent | c10a5588b3c28d328bfe5fbcaa17a3e627972d99 (diff) |
inotify_rm_watch: Change second argument to int
2009-01-30 Ulrich Drepper <drepper@redhat.com>
[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 <cernekee@gmail.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libc/sysdeps/linux/common/sys')
-rw-r--r-- | libc/sysdeps/linux/common/sys/inotify.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/sys/inotify.h b/libc/sysdeps/linux/common/sys/inotify.h index dc4e19da1..07be37d83 100644 --- a/libc/sysdeps/linux/common/sys/inotify.h +++ b/libc/sysdeps/linux/common/sys/inotify.h @@ -98,7 +98,7 @@ extern int inotify_add_watch (int __fd, const char *__name, uint32_t __mask) __THROW; /* Remove the watch specified by WD from the inotify instance FD. */ -extern int inotify_rm_watch (int __fd, uint32_t __wd) __THROW; +extern int inotify_rm_watch (int __fd, int __wd) __THROW; __END_DECLS |