fix typo in inotify structure

This commit is contained in:
Rich Felker 2011-02-20 16:21:39 -05:00
parent 26031da0f8
commit b1b752372f

View File

@ -8,7 +8,7 @@ extern "C" {
#include <stdint.h>
struct inotify_event {
int we;
int wd;
uint32_t mask, cookie, len;
char name[];
};