]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
[BZ #7040]
authorUlrich Drepper <drepper@redhat.com>
Fri, 30 Jan 2009 20:45:59 +0000 (20:45 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 30 Jan 2009 20:45:59 +0000 (20:45 +0000)
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.

ChangeLog
sysdeps/unix/sysv/linux/sys/inotify.h

index 8153b22e137d88c012cdb2bfd04cdd5965fc1072..56219ba87ecf042380274fa978ae090071fa7ed3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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.
+
 2009-01-06  Steven Munroe  <sjmunroe@us.ibm.com>
 
        * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
index 81e31fb6465be3de470fcfd43855c58d3002ef32..8b3a85280f526246f36d7690530b76be221df20e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
+/* Copyright (C) 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -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