gio: Use G_VALUE_INIT

This commit is contained in:
Javier Jardón
2011-09-30 17:08:15 +01:00
parent f07201c314
commit 8d3250016d
8 changed files with 18 additions and 18 deletions

View File

@@ -246,8 +246,8 @@ pollable_source_closure_callback (GObject *stream,
{
GClosure *closure = data;
GValue param = { 0, };
GValue result_value = { 0, };
GValue param = G_VALUE_INIT;
GValue result_value = G_VALUE_INIT;
gboolean result;
g_value_init (&result_value, G_TYPE_BOOLEAN);