summaryrefslogtreecommitdiff
path: root/src/mcd-dbusprop.c
diff options
context:
space:
mode:
authorAlberto Mardegan <alberto.mardegan@nokia.com>2009-02-26 14:31:30 +0200
committerAlberto Mardegan <alberto.mardegan@nokia.com>2009-02-26 14:31:30 +0200
commit51890dc35c877e8869901c7caaf07c3666ce0b76 (patch)
tree0f2b970327325988c08cfeb2fc2b5a6d019cd8d8 /src/mcd-dbusprop.c
parent13018d16972fe8fa9de272d4ea2eee8cadb74ff8 (diff)
downloadtelepathy-mission-control-51890dc35c877e8869901c7caaf07c3666ce0b76.tar.gz
Remove G_STRFUNC from DEBUG() parameters
Diffstat (limited to 'src/mcd-dbusprop.c')
-rw-r--r--src/mcd-dbusprop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mcd-dbusprop.c b/src/mcd-dbusprop.c
index 2e0bd531..4fb2d24f 100644
--- a/src/mcd-dbusprop.c
+++ b/src/mcd-dbusprop.c
@@ -77,7 +77,7 @@ mcd_dbusprop_set_property (TpSvcDBusProperties *self,
{
const McdDBusProp *prop_array, *property;
- DEBUG ("%s: %s, %s", G_STRFUNC, interface_name, property_name);
+ DEBUG ("%s, %s", interface_name, property_name);
prop_array = get_interface_properties (self, interface_name);
if (!prop_array)
@@ -176,7 +176,7 @@ dbusprop_get (TpSvcDBusProperties *self,
GValue value = { 0 };
GError *error = NULL;
- DEBUG ("%s: %s, %s", G_STRFUNC, interface_name, property_name);
+ DEBUG ("%s, %s", interface_name, property_name);
mcd_dbusprop_get_property (self, interface_name, property_name,
&value, &error);
@@ -209,7 +209,7 @@ dbusprop_get_all (TpSvcDBusProperties *self,
GHashTable *properties;
GError *error = NULL;
- DEBUG ("%s: %s", G_STRFUNC, interface_name);
+ DEBUG ("%s", interface_name);
prop_array = get_interface_properties (self, interface_name);
if (!prop_array)
@@ -277,7 +277,7 @@ mcd_dbus_get_interfaces (TpSvcDBusProperties *self, const gchar *name,
GPtrArray *a_ifaces;
GType type;
- DEBUG ("%s called", G_STRFUNC);
+ DEBUG ("called");
a_ifaces = g_ptr_array_new ();