summaryrefslogtreecommitdiff
path: root/backends/markup-tree.c
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2009-07-15 13:49:12 -0400
committerColin Walters <walters@verbum.org>2009-07-15 13:57:43 -0400
commit8bad97390ee8cd1203908139d03c4f5678ac4ef4 (patch)
tree16670329263c12e5c55a64da97da3773eea8afbb /backends/markup-tree.c
parent6c45ca41d5c5dc5ebd295a89099a34db2aa8cf1c (diff)
downloadgconf-8bad97390ee8cd1203908139d03c4f5678ac4ef4.tar.gz
Silence some gcc compiler warnings
None of these are actual problems, but it's good to keep the compiler output quiet.
Diffstat (limited to 'backends/markup-tree.c')
-rw-r--r--backends/markup-tree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/markup-tree.c b/backends/markup-tree.c
index d5bfcfaf..c08d6c79 100644
--- a/backends/markup-tree.c
+++ b/backends/markup-tree.c
@@ -2588,9 +2588,9 @@ parse_value_element (GMarkupParseContext *context,
case GCONF_VALUE_BOOL:
case GCONF_VALUE_FLOAT:
{
- double fval;
- gboolean bval;
- int ival;
+ double fval = 0.0;
+ gboolean bval = FALSE;
+ int ival = 0;
if (value == NULL)
{