summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Flueeli <tflueeli@gmail.com>2010-10-28 12:07:01 +0200
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-10-28 16:22:30 +0100
commit0b8c4dfdf2b6100acbf7b524e8829c39e8978608 (patch)
tree622a0d8c831c79457b858ccabb5053e1123a7b86
parent908f4474b65c636d53d69e1aea4225c0bd711cea (diff)
downloadtelepathy-gabble-0b8c4dfdf2b6100acbf7b524e8829c39e8978608.tar.gz
remove unnecessary cast
This fixes the following error on MSVC9: debug.c(95) : error C2440: 'type cast' : cannot convert from 'GDebugKey' to 'GDebugKey'
-rw-r--r--src/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.c b/src/debug.c
index 00d5f38fd..f4329d1a1 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -92,7 +92,7 @@ debug_flag_to_domain (GabbleDebugFlags flag)
for (i = 0; keys[i].value; i++)
{
- GDebugKey key = (GDebugKey) keys[i];
+ GDebugKey key = keys[i];
gchar *val;
val = g_strdup_printf ("%s/%s", G_LOG_DOMAIN, key.key);