Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > by-pkgid > ed2bdfba21cdf4a6546412191785dbc3 > files > 36

glibc-2.9-0.20081113.5mnb2.src.rpm

 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.

--- glibc-2.9/sysdeps/unix/sysv/linux/alpha/sys/inotify.h.bz7040	2009-02-05 11:47:24.000000000 -0500
+++ glibc-2.9/sysdeps/unix/sysv/linux/alpha/sys/inotify.h	2009-02-05 11:48:01.000000000 -0500
@@ -98,7 +98,7 @@ extern int inotify_add_watch (int __fd, 
   __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
 
--- glibc-2.9/sysdeps/unix/sysv/linux/sparc/sys/inotify.h.bz7040	2009-02-05 11:46:24.000000000 -0500
+++ glibc-2.9/sysdeps/unix/sysv/linux/sparc/sys/inotify.h	2009-02-05 11:47:07.000000000 -0500
@@ -98,7 +98,7 @@ extern int inotify_add_watch (int __fd, 
   __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
 
--- glibc-2.9/sysdeps/unix/sysv/linux/sys/inotify.h.bz7040	2008-07-25 00:50:41.000000000 -0400
+++ glibc-2.9/sysdeps/unix/sysv/linux/sys/inotify.h	2009-02-05 11:45:30.000000000 -0500
@@ -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, 
   __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