From 93e2a757d439b4965bf21b26a41628be9b2ec788 Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Fri, 24 Oct 2014 11:14:01 +0200 Subject: Do not print could-not-open-warnings for files found by directory traversal --- image.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'image.c') diff --git a/image.c b/image.c index d4093bf..ee9c30d 100644 --- a/image.c +++ b/image.c @@ -292,7 +292,7 @@ bool img_load_gif(img_t *img, const fileinfo_t *file) DGifCloseFile(gif); #endif - if (err && !file->loaded) + if (err && file->warn) warn("corrupted gif file: %s", file->name); if (img->multi.cnt > 1) { @@ -321,7 +321,8 @@ bool img_load(img_t *img, const fileinfo_t *file) if (access(file->path, R_OK) < 0 || (img->im = imlib_load_image(file->path)) == NULL) { - warn("could not open image: %s", file->name); + if (file->warn) + warn("could not open image: %s", file->name); return false; } -- cgit v1.2.3-54-g00ecf