From 2757c19b151d470839e42cc131010809d63203bf Mon Sep 17 00:00:00 2001 From: Leonardo Hernández Hernández Date: Tue, 11 Jun 2024 14:19:51 -0600 Subject: replace fprintf with LOG_ERR to log a image failed to load --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index ac0b743..9f2d2f5 100644 --- a/main.c +++ b/main.c @@ -420,7 +420,7 @@ main(int argc, const char *const *argv) image = svg_load(fp, image_path); #endif if (image == NULL) { - fprintf(stderr, "error: %s: failed to load\n", image_path); + LOG_ERR("%s: failed to load", image_path); fclose(fp); return EXIT_FAILURE; } -- cgit v1.2.3