From 6b422e21bf82d5b2a7913598d14af2da5573173e Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Mon, 27 Feb 2023 20:51:12 +0100 Subject: [PATCH] Fix error message on icon loading failure --- app/src/icon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/icon.c b/app/src/icon.c index e709678f..a8588dd8 100644 --- a/app/src/icon.c +++ b/app/src/icon.c @@ -69,7 +69,7 @@ decode_image(const char *path) { } if (avformat_open_input(&ctx, path, NULL, NULL) < 0) { - LOGE("Could not open image codec: %s", path); + LOGE("Could not open icon image: %s", path); goto free_ctx; }