diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2013-08-07 21:16:59 +0200 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2013-08-07 21:16:59 +0200 |
commit | 140b97dc26f63a9df9069b90b93f84f8beb92b1c (patch) | |
tree | f8022cc12e632d71c93dd919bf098d048a90292d | |
parent | 3f773eb7f7e958017d1ded275833596a4c4ad095 (diff) |
connection: cast handle ID to const
-rw-r--r-- | src/kindling-connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kindling-connection.c b/src/kindling-connection.c index 9074eaa..ed4ef31 100644 --- a/src/kindling-connection.c +++ b/src/kindling-connection.c @@ -147,7 +147,7 @@ static GQuark _canon_nick_quark() { } static const gchar *gimme_an_alias (TpHandleRepoIface *repo, TpHandle handle) { - const char *alias = tp_handle_get_qdata (repo, handle, _canon_nick_quark()); + const char *alias = (const char *) tp_handle_get_qdata (repo, handle, _canon_nick_quark()); if (alias != NULL) { return alias; |