about summary refs log tree commit diff stats
path: root/src/xdg_base.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-11-25 22:08:41 +0000
committerJames Booth <boothj5@gmail.com>2012-11-25 22:08:41 +0000
commit58655a90c356f5b5a712146b8f006ba869be734d (patch)
tree79064360840e9152496954f77f27699bea320fe6 /src/xdg_base.c
parent270c88fc0f0734a48db9c5e577c1740fa41fda3b (diff)
downloadprofani-tty-58655a90c356f5b5a712146b8f006ba869be734d.tar.gz
Fixed help config file locations
Diffstat (limited to 'src/xdg_base.c')
-rw-r--r--src/xdg_base.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdg_base.c b/src/xdg_base.c
index 7b8cf28f..b71e39d1 100644
--- a/src/xdg_base.c
+++ b/src/xdg_base.c
@@ -38,7 +38,7 @@ xdg_get_config_home(void)
         g_string_append(default_path, "/.config");
         gchar *result = strdup(default_path->str);
         g_string_free(default_path, TRUE);
-        
+
         return result;
     }
 }
@@ -56,7 +56,7 @@ xdg_get_data_home(void)
         g_string_append(default_path, "/.local/share");
         gchar *result = strdup(default_path->str);
         g_string_free(default_path, TRUE);
-        
+
         return result;
     }
 }