fix incorrect type for wd argument of inotify_rm_watch

this was wrong since the original commit adding inotify, and I don't
see any explanation for it. not even the man pages have it wrong. it
was most likely a copy-and-paste error.
This commit is contained in:
Rich Felker
2014-01-07 02:41:27 -05:00
parent dbe221ecff
commit 2750337379
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ struct inotify_event {
int inotify_init(void);
int inotify_init1(int);
int inotify_add_watch(int, const char *, uint32_t);
int inotify_rm_watch(int, uint32_t);
int inotify_rm_watch(int, int);
#ifdef __cplusplus
}