From 9b9294bae67da4e0388e7c31d0063f4e114aa1f8 Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Sun, 4 Jan 2015 15:38:49 +0100 Subject: Use bit-field for boolean flags in fileinfo struct --- image.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'image.c') diff --git a/image.c b/image.c index ee9c30d..240054f 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->warn) + if (err && (file->flags & FF_WARN)) warn("corrupted gif file: %s", file->name); if (img->multi.cnt > 1) { @@ -321,7 +321,7 @@ 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) { - if (file->warn) + if (file->flags & FF_WARN) warn("could not open image: %s", file->name); return false; } -- cgit v1.2.3-54-g00ecf