aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-idle.c
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.co.uk>2009-02-12 03:43:49 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-02-12 03:43:49 +0800
commit9c2e004953dae519e22df6236dcc1a389a17b49c (patch)
treea4b20d115570125fac4d2eec97e1839eb493afcf /libempathy/empathy-idle.c
parent9cdc25c056d3da95035b7ed9c28b78f0c23a2222 (diff)
downloadgsoc2013-empathy-9c2e004953dae519e22df6236dcc1a389a17b49c.tar
gsoc2013-empathy-9c2e004953dae519e22df6236dcc1a389a17b49c.tar.gz
gsoc2013-empathy-9c2e004953dae519e22df6236dcc1a389a17b49c.tar.bz2
gsoc2013-empathy-9c2e004953dae519e22df6236dcc1a389a17b49c.tar.lz
gsoc2013-empathy-9c2e004953dae519e22df6236dcc1a389a17b49c.tar.xz
gsoc2013-empathy-9c2e004953dae519e22df6236dcc1a389a17b49c.tar.zst
gsoc2013-empathy-9c2e004953dae519e22df6236dcc1a389a17b49c.zip
Fix type punned pointers warnings
Remove senseless (void **) From: Olivier CrĂȘte <olivier.crete@collabora.co.uk> Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2440
Diffstat (limited to 'libempathy/empathy-idle.c')
-rw-r--r--libempathy/empathy-idle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-idle.c b/libempathy/empathy-idle.c
index 178134738..eeb183892 100644
--- a/libempathy/empathy-idle.c
+++ b/libempathy/empathy-idle.c
@@ -296,7 +296,7 @@ idle_constructor (GType type,
(type, n_props, props);
idle_singleton = EMPATHY_IDLE (retval);
- g_object_add_weak_pointer (retval, (gpointer *) &idle_singleton);
+ g_object_add_weak_pointer (retval, (gpointer) &idle_singleton);
}
return retval;