summaryrefslogtreecommitdiff
path: root/panels/background
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2011-04-05 12:08:18 -0400
committerCosimo Cecchi <cosimoc@gnome.org>2011-04-05 12:08:42 -0400
commit7b7f67fbae00e84a85507be85558f4f4cbe96c12 (patch)
tree6e97a448eee66c489651804c9a9ce485d76ef7f6 /panels/background
parent84a2b3e3538c5b148174332daf518d6e7d562eb6 (diff)
downloadgnome-control-center-7b7f67fbae00e84a85507be85558f4f4cbe96c12.tar.gz
background: fix a compilation warning
Diffstat (limited to 'panels/background')
-rw-r--r--panels/background/cc-background-xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/panels/background/cc-background-xml.c b/panels/background/cc-background-xml.c
index c5c7134fc..69a57138f 100644
--- a/panels/background/cc-background-xml.c
+++ b/panels/background/cc-background-xml.c
@@ -486,7 +486,7 @@ cc_background_xml_load_xml (CcBackgroundXml *xml,
g_return_val_if_fail (CC_IS_BACKGROUND_XML (xml), FALSE);
if (g_file_test (filename, G_FILE_TEST_IS_REGULAR) == FALSE)
- return NULL;
+ return FALSE;
return cc_background_xml_load_xml_internal (xml, filename, FALSE);
}