1
0
Fork 0

udev_monitor.c: bitmask is unsigned

This commit is contained in:
illiliti 2021-08-29 04:55:14 +03:00
parent c2a08cdd79
commit 8a4b5b582c

View file

@ -32,8 +32,8 @@ struct udev_monitor {
struct udev_list_entry subsystem_match; struct udev_list_entry subsystem_match;
struct udev_list_entry devtype_match; struct udev_list_entry devtype_match;
struct udev *udev; struct udev *udev;
unsigned nlgrp;
int refcount; int refcount;
int nlgrp;
int fd; int fd;
}; };