/srv/mercurial-server/detachablepurple: 87e3eed393e6: Little typ...

Gilles Bedel gillux at cpw.pidgin.im
Fri Jun 15 22:01:44 EDT 2012


Changeset: 87e3eed393e6dfb1b5f4babcd32c089f7192c7b4
Author:	 Gilles Bedel <gillux at cpw.pidgin.im>
Date:	 2012-05-20 15:38 +0000
Branch:	 cpw.gillux.detachablepurple
URL: http://hg.pidgin.im/srv/mercurial-server/detachablepurple/rev/87e3eed393e6

Description:

Little type fix.

diffstat:

 libpurple/dbus/constructor.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff --git a/libpurple/dbus/constructor.c b/libpurple/dbus/constructor.c
--- a/libpurple/dbus/constructor.c
+++ b/libpurple/dbus/constructor.c
@@ -327,7 +327,7 @@
 	PurpleObject *pobject;
 	gpointer *obj;
 	GVariant *props;
-	const gchar *dbus_path;
+	gchar *dbus_path;
 
 	g_variant_get(vpobject, "(o at a(sv))", &dbus_path, &props);
 
@@ -338,7 +338,7 @@
 	purple_object_dbus_init(obj, FALSE);
 
 	g_variant_unref(props);
-	g_free((gchar*)dbus_path);
+	g_free(dbus_path);
 
 	return obj;
 }



More information about the Commits mailing list