From 9066523229285bad456e87c7135b11277f33a0c2 Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Tue, 7 May 2024 19:08:10 +0200 Subject: [PATCH] Do not print error when using --list with broken config file --- src/configfile.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/configfile.c b/src/configfile.c index cb73146..cc3013d 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -624,7 +624,6 @@ void config_list_targets(void) if (!g_key_file_load_from_file(keyfile, config.path, G_KEY_FILE_NONE, &error)) { - tio_error_print("Failure loading file: %s", error->message); g_error_free(error); return; }