diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-11 14:19:51 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-11 14:21:33 -0600 |
commit | 2757c19b151d470839e42cc131010809d63203bf (patch) | |
tree | e9cd05a767273bf6d28a0459821605b952ead3a4 | |
parent | dd36cce8c47bb0e17a789cf2bd95a51e29b59e78 (diff) | |
download | wbg-2757c19b151d470839e42cc131010809d63203bf.tar.gz |
replace fprintf with LOG_ERR to log a image failed to load
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |