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 9b8f4faa4b
commit ebe3fc2af8

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