diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-11 14:14:03 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-11 14:21:42 -0600 |
commit | 573c014568a7dd4facbca9cc6b9032996c18338e (patch) | |
tree | 20ab667b307a6f65f4744bd81743a222882e29ad /png.c | |
parent | 2757c19b151d470839e42cc131010809d63203bf (diff) | |
download | wbg-573c014568a7dd4facbca9cc6b9032996c18338e.tar.gz |
use LOG_DBG if the verification of the format failed
Diffstat (limited to 'png.c')
-rw-r--r-- | png.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ png_load(FILE *fp, const char *path) /* Verify PNG header */ uint8_t header[8] = {0}; if (fread(header, 1, 8, fp) != 8 || png_sig_cmp(header, 0, 8)) { - // LOG_ERR("%s: not a PNG", path); + LOG_DBG("%s: not a PNG", path); goto err; } |