diff options
author | Bert Münnich <ber.t@gmx.com> | 2011-09-29 10:16:13 +0200 |
---|---|---|
committer | Bert Münnich <ber.t@gmx.com> | 2011-09-29 10:16:13 +0200 |
commit | 22d4e991d5726ca034924fa697a32a42578202c2 (patch) | |
tree | 6bc19435e00edfd22b824cabdaa20310af2bd384 /image.c | |
parent | d369f10aa56deafbc1816037d5a30af2f9bdbc50 (diff) |
Transformed function macros in util.h to inline functions
Diffstat (limited to 'image.c')
-rw-r--r-- | image.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -303,11 +303,11 @@ bool img_load(img_t *img, const fileinfo_t *file) { (void) fmt; #if EXIF_SUPPORT - if (STREQ(fmt, "jpeg")) + if (streq(fmt, "jpeg")) exif_auto_orientate(file); #endif #if GIF_SUPPORT - if (STREQ(fmt, "gif")) + if (streq(fmt, "gif")) img_load_gif(img, file); #endif |