summaryrefslogtreecommitdiff
path: root/src/screen/settingKeys.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen/settingKeys.c')
-rw-r--r--src/screen/settingKeys.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screen/settingKeys.c b/src/screen/settingKeys.c
index a1bf4ad..90a35f2 100644
--- a/src/screen/settingKeys.c
+++ b/src/screen/settingKeys.c
@@ -138,13 +138,13 @@ void key_table_init()
keycontrolFile = text_file_load(path);
if (keycontrolFile == 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);
keycontrolFile = text_file_new(path);
if (keycontrolFile == NULL) {
- fprintf(stderr, _("[Error] Unable to create config file [%s]\n"), path);
+ error("Unable to create config file [%s]", path);
return;
}
}