From ac221783bb41f6137ccc192ae378fc8306f00a32 Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Mon, 4 Jan 2010 20:43:32 +0000 Subject: [PATCH] Remove debugging message from config file parser --- src/config_file.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config_file.c b/src/config_file.c index 3d071b3..738b3ff 100644 --- a/src/config_file.c +++ b/src/config_file.c @@ -156,7 +156,7 @@ static char *config_file_name(void) // We prefer them in the above order // Need to free the result of this function - char *fname = get_string_option("alt_config_file"); + const char *fname = get_string_option("alt_config_file"); if (*fname) return strdup(fname); // We always free the result @@ -190,7 +190,6 @@ static char *config_file_name(void) void parse_config_file(void) { char *fname = config_file_name(); - printf("config file name = %s\n", fname); if (fname == NULL) return; -- 2.39.2