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

@@ -87,8 +87,8 @@ fd_source_closure_callback (int fd,
{
GClosure *closure = data;
GValue params[2] = { { 0, }, { 0, } };
GValue result_value = { 0, };
GValue params[2] = { G_VALUE_INIT, G_VALUE_INIT };
GValue result_value = G_VALUE_INIT;
gboolean result;
g_value_init (&result_value, G_TYPE_BOOLEAN);