Fix error message on icon loading failure

This commit is contained in:
Romain Vimont 2023-02-27 20:51:12 +01:00
parent 8e8b039a63
commit 6b422e21bf

View file

@ -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;
}