mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-14 13:26:16 +01:00
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:
parent
9b8f4faa4b
commit
ebe3fc2af8
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user