summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-Antoine Perennou <Marc-Antoine@Perennou.com>2011-09-12 23:48:26 +0200
committerRyan Lortie <desrt@desrt.ca>2011-09-12 18:31:39 -0400
commit02a27575681d95198e9ff2efca9f00e2f4563d37 (patch)
treec787aa22459329e94d1cf51308a32d67bd0b40fd
parenta4919e5a81bb1a430eb2ae4242b81c4c9d681047 (diff)
downloaddconf-02a27575681d95198e9ff2efca9f00e2f4563d37.tar.gz
fix dconf_shmdir_from_environment
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com> https://bugzilla.gnome.org/show_bug.cgi?id=658864
-rw-r--r--common/dconf-shmdir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/dconf-shmdir.c b/common/dconf-shmdir.c
index eed90e5..839a487 100644
--- a/common/dconf-shmdir.c
+++ b/common/dconf-shmdir.c
@@ -28,7 +28,7 @@ dconf_shmdir_from_environment (void)
result = g_build_filename (g_get_user_runtime_dir (), "dconf", NULL);
- if (!g_mkdir_with_parents (result, 0700) != 0)
+ if (g_mkdir_with_parents (result, 0700) != 0)
g_critical ("unable to create '%s'; dconf will not work properly.", result);
return result;