From: Rich Felker Date: Sun, 20 Feb 2011 21:21:39 +0000 (-0500) Subject: fix typo in inotify structure X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=b1b752372f10c904d398f64266b3188703727736 fix typo in inotify structure --- diff --git a/include/sys/inotify.h b/include/sys/inotify.h index 59644ef3..921a19ca 100644 --- a/include/sys/inotify.h +++ b/include/sys/inotify.h @@ -8,7 +8,7 @@ extern "C" { #include struct inotify_event { - int we; + int wd; uint32_t mask, cookie, len; char name[]; };