summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteffen Kieß <Steffen.Kiess@ipvs.uni-stuttgart.de>2014-08-25 14:11:35 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2014-08-25 14:11:35 +0200
commitab29ae42f751bf7e4ecc9a601e09cafab499fd14 (patch)
treead487064b61c628a8348350530986a2eaaf1603e
parent810b32e92f2896a1ad8ee204bf6b8d5456a5db08 (diff)
downloadtelepathy-mission-control-ab29ae42f751bf7e4ecc9a601e09cafab499fd14.tar.gz
mcd-connection: use tp_asv_new() properly
The second argument has to be the type of the value. https://bugs.freedesktop.org/show_bug.cgi?id=81751
-rw-r--r--src/mcd-connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mcd-connection.c b/src/mcd-connection.c
index e04ff78f..e225da2c 100644
--- a/src/mcd-connection.c
+++ b/src/mcd-connection.c
@@ -2267,7 +2267,7 @@ _mcd_connection_set_tp_connection (McdConnection *connection,
if (!priv->tp_conn)
{
GHashTable *details = tp_asv_new (
- "debug-message", inner_error->message,
+ "debug-message", G_TYPE_STRING, inner_error->message,
NULL);
/* Constructing a TpConnection can only fail from invalid arguments,