From b6338e7753d0862276d7ed38eab2a19d8b6544b6 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Tue, 1 Sep 2015 17:31:09 +1200 Subject: Removed old debug swarf --- config_file.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'config_file.c') diff --git a/config_file.c b/config_file.c index b085c4c..2faeaa3 100644 --- a/config_file.c +++ b/config_file.c @@ -21,25 +21,19 @@ gboolean config_open(struct config_file* config_file) { if(config_file->key_file) - { - debug("Freeing config_file->keyfile\n"); g_key_file_free(config_file->key_file); - } - debug("Creating new config_file->key_file\n"); config_file->key_file = g_key_file_new(); gboolean success = g_key_file_load_from_file( config_file->key_file, config_file->file_name, G_KEY_FILE_NONE, NULL); - debug("Returning %s\n",success? "TRUE" : "FALSE"); return success; } void config_close(struct config_file* config_file) { - debug("Freeing key_file with %s value\n",config_file->key_file == NULL? "NULL":"non-NULL"); g_key_file_free(config_file->key_file); } -- cgit v1.1