diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-20 06:07:03 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-20 06:07:03 +0800 |
commit | 10dee445a70be41a55655907dabd2a2018c8ca52 (patch) | |
tree | ddcd659763242aa4ec2c16a75291376413850805 /src | |
parent | 6967bdfefbf338080434fba5b01879e388d988a8 (diff) | |
download | gsoc2013-empathy-10dee445a70be41a55655907dabd2a2018c8ca52.tar gsoc2013-empathy-10dee445a70be41a55655907dabd2a2018c8ca52.tar.gz gsoc2013-empathy-10dee445a70be41a55655907dabd2a2018c8ca52.tar.bz2 gsoc2013-empathy-10dee445a70be41a55655907dabd2a2018c8ca52.tar.lz gsoc2013-empathy-10dee445a70be41a55655907dabd2a2018c8ca52.tar.xz gsoc2013-empathy-10dee445a70be41a55655907dabd2a2018c8ca52.tar.zst gsoc2013-empathy-10dee445a70be41a55655907dabd2a2018c8ca52.zip |
Don't forget to give an initial value to GValue.
svn path=/trunk/; revision=994
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-filter.c b/src/empathy-filter.c index e71504ccb..4262b84f7 100644 --- a/src/empathy-filter.c +++ b/src/empathy-filter.c @@ -730,7 +730,7 @@ filter_connection_ready_cb (TpConnection *connection, #ifdef HAVE_VOIP GPtrArray *capabilities; GType cap_type; - GValue cap; + GValue cap = {0, }; const gchar *remove = NULL; #endif |