[rygel] core: Don't pass extra arg to GLib.LogFunc



commit 0e5b4601677069bec54ad86705381ec7b6992298
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Mon Jan 24 18:12:38 2011 +0200

    core: Don't pass extra arg to GLib.LogFunc

 src/rygel/rygel-log-handler.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/rygel/rygel-log-handler.vala b/src/rygel/rygel-log-handler.vala
index a466e54..51fd9d8 100644
--- a/src/rygel/rygel-log-handler.vala
+++ b/src/rygel/rygel-log-handler.vala
@@ -71,7 +71,7 @@ public class Rygel.LogHandler : GLib.Object {
                            string        message) {
         if (log_levels in this.levels) {
             // Forward the message to default domain
-            Log.default_handler (log_domain, log_levels, message, null);
+            Log.default_handler (log_domain, log_levels, message);
         }
     }
 



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