aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c
index 7469e67..480bcf6 100644
--- a/src/config.c
+++ b/src/config.c
@@ -41,7 +41,7 @@ gboolean set_option(gchar *key, gchar *value, gchar *group) {
if(!g_key_file_get_string(config, group, key, NULL))
return FALSE;
- //TODO safteycheck value
+ /* TODO safteycheck value */
g_key_file_set_string(config, group, key, value);
return TRUE;
}
@@ -165,7 +165,7 @@ gboolean init_xml() {
void clean_config() {
- //TODO g_ptr_array all of this
+ /* TODO g_ptr_array all of this */
g_free(config);
g_free(data_dir);
g_close(config_descr, NULL);