From 9387e8e8a7a76732ae0eed7732d1f284cf82148a Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 15 Jan 2015 15:46:19 +0100 Subject: [PATCH] config/trivial: fix returning FALSE instead of NULL in nm_config_new() --- src/nm-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nm-config.c b/src/nm-config.c index d3da01ba56..be06955f64 100644 --- a/src/nm-config.c +++ b/src/nm-config.c @@ -578,7 +578,7 @@ nm_config_new (GError **error) } g_ptr_array_unref (confs); if (!singleton) - return FALSE; + return NULL; /* Handle no-auto-default key and state file */ priv->no_auto_default = g_key_file_get_string_list (priv->keyfile, "main", "no-auto-default", NULL, NULL);