Fixed help config file locations

This commit is contained in:
James Booth
2012-11-25 22:08:41 +00:00
parent 270c88fc0f
commit 58655a90c3
3 changed files with 13 additions and 5 deletions

View File

@@ -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;
}
}