inotify: Add missing commas

These were accidentally omitted from commit
748bb24985. My fault.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2017-11-28 14:25:34 +00:00
parent 643c2d590c
commit 2a0db6d868

View File

@ -196,7 +196,7 @@ ih_event_callback (ik_event_t *event,
* only ever having a single bit set (apart from IN_ISDIR) is false.
* The kernel documentation is lacking here. */
g_assert (event_flags != -1);
interesting = g_file_monitor_source_handle_event (sub->user_data, event_flags
interesting = g_file_monitor_source_handle_event (sub->user_data, event_flags,
event->name, NULL, other, event->timestamp);
if (other)
@ -205,7 +205,7 @@ ih_event_callback (ik_event_t *event,
}
else if (event_flags != -1)
/* unpaired event -- no 'other' field */
interesting = g_file_monitor_source_handle_event (sub->user_data, event_flags
interesting = g_file_monitor_source_handle_event (sub->user_data, event_flags,
event->name, NULL, NULL, event->timestamp);
if (event->mask & IN_CREATE)