From 753131cf9b32315fdd11f2ce6e58b8f2d6ba3bc1 Mon Sep 17 00:00:00 2001 From: Michal Zima Date: Sun, 6 Dec 2009 22:58:26 +0100 Subject: Revised methods how are translated strings handled Few comments were made available to Doxygen --- src/client/config.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/config.c') diff --git a/src/client/config.c b/src/client/config.c index c9cb33d..48496df 100644 --- a/src/client/config.c +++ b/src/client/config.c @@ -108,14 +108,14 @@ void config_load() config_file = text_file_load(path); if (config_file == NULL) { - fprintf(stderr, _("[Error] Unable to load config file [%s]\n"), path); - fprintf(stderr, _("[Debug] Creating config file [%s]\n"), path); + error("Unable to load config file [%s]", path); + debug("Creating config file [%s]", path); config_file = text_file_new(path); } if (config_file == NULL) { - fprintf(stderr, _("[Error] Unable to create config file [%s]\n"), path); + error("Unable to create config file [%s]", path); return; } -- cgit v1.2.3