summaryrefslogtreecommitdiffstats
path: root/image.c
diff options
context:
space:
mode:
authorBert Münnich <ber.t@gmx.com>2011-09-26 21:53:52 +0200
committerBert Münnich <ber.t@gmx.com>2011-09-26 21:53:52 +0200
commitd721d8453e6c0ff7112e8228eb58aa438d1f7f1a (patch)
tree449e393e7bb614b150f4c72b3998ae5ced95e201 /image.c
parentd08408e94250425e677e1ab33d917e05e229faa2 (diff)
downloadnsxiv-d721d8453e6c0ff7112e8228eb58aa438d1f7f1a.tar.zst
Added STREQ macro
Diffstat (limited to 'image.c')
-rw-r--r--image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/image.c b/image.c
index 9892e7a..9896a54 100644
--- a/image.c
+++ b/image.c
@@ -303,11 +303,11 @@ bool img_load(img_t *img, const fileinfo_t *file) {
(void) fmt;
#if EXIF_SUPPORT
- if (!strcmp(fmt, "jpeg"))
+ if (STREQ(fmt, "jpeg"))
exif_auto_orientate(file);
#endif
#if GIF_SUPPORT
- if (!strcmp(fmt, "gif"))
+ if (STREQ(fmt, "gif"))
img_load_gif(img, file);
#endif