[glib] inotify: Add missing commas



commit 2a0db6d868a998a247415cf83dd4dcbe392bf70a
Author: Philip Withnall <withnall endlessm com>
Date:   Tue Nov 28 14:25:34 2017 +0000

    inotify: Add missing commas
    
    These were accidentally omitted from commit
    748bb24985419d54812f31f549e042dad8619084. My fault.
    
    Signed-off-by: Philip Withnall <withnall endlessm com>

 gio/inotify/inotify-helper.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gio/inotify/inotify-helper.c b/gio/inotify/inotify-helper.c
index a307a88..d64e34d 100644
--- a/gio/inotify/inotify-helper.c
+++ b/gio/inotify/inotify-helper.c
@@ -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)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]