inotify: Fix some enum comparisons to integers

`-1` isn’t a valid member of the enum, so cast to `int` first. This
fixes a compiler warning on Android.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2019-10-08 13:49:40 +01:00
parent 1bda4db213
commit e257e17d2e

View File

@ -193,7 +193,7 @@ ih_event_callback (ik_event_t *event,
* properly. If not, the assumption we have made about event->mask
* only ever having a single bit set (apart from IN_ISDIR) is false.
* The kernel documentation is lacking here. */
g_assert (event_flags != -1);
g_assert ((int) event_flags != -1);
interesting = g_file_monitor_source_handle_event (sub->user_data, event_flags,
event->name, NULL, other, event->timestamp);
@ -201,7 +201,7 @@ ih_event_callback (ik_event_t *event,
g_object_unref (other);
}
}
else if (event_flags != -1)
else if ((int) event_flags != -1)
/* unpaired event -- no 'other' field */
interesting = g_file_monitor_source_handle_event (sub->user_data, event_flags,
event->name, NULL, NULL, event->timestamp);