From: Zeeshan Ali (Khattak) Date: Mon, 24 Jan 2011 16:12:38 +0000 (+0200) Subject: core: Don't pass extra arg to GLib.LogFunc X-Git-Tag: RYGEL_0_9_7~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e5b4601677069bec54ad86705381ec7b6992298;p=profile%2Fivi%2Frygel.git core: Don't pass extra arg to GLib.LogFunc --- 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); } }