From 36c2162660524ec241b96d14befcc2422ff7ec5c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 23 Apr 2019 08:36:57 +1000 Subject: [PATCH] Correct braces with ifdef's --- source/blender/blenkernel/intern/image.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c index dd716610df5..eaf90bd4ebb 100644 --- a/source/blender/blenkernel/intern/image.c +++ b/source/blender/blenkernel/intern/image.c @@ -1497,13 +1497,12 @@ void BKE_imbuf_to_image_format(struct ImageFormatData *im_format, const ImBuf *i if (ftype == IMB_FTYPE_IMAGIC) { im_format->imtype = R_IMF_IMTYPE_IRIS; - -#ifdef WITH_HDR } +#ifdef WITH_HDR else if (ftype == IMB_FTYPE_RADHDR) { im_format->imtype = R_IMF_IMTYPE_RADHDR; -#endif } +#endif else if (ftype == IMB_FTYPE_PNG) { im_format->imtype = R_IMF_IMTYPE_PNG; @@ -1517,13 +1516,12 @@ void BKE_imbuf_to_image_format(struct ImageFormatData *im_format, const ImBuf *i #ifdef WITH_DDS else if (ftype == IMB_FTYPE_DDS) { im_format->imtype = R_IMF_IMTYPE_DDS; -#endif } +#endif else if (ftype == IMB_FTYPE_BMP) { im_format->imtype = R_IMF_IMTYPE_BMP; - -#ifdef WITH_TIFF } +#ifdef WITH_TIFF else if (ftype == IMB_FTYPE_TIF) { im_format->imtype = R_IMF_IMTYPE_TIFF; if (custom_flags & TIF_16BIT) { @@ -1565,8 +1563,8 @@ void BKE_imbuf_to_image_format(struct ImageFormatData *im_format, const ImBuf *i } else if (ftype == IMB_FTYPE_DPX) { im_format->imtype = R_IMF_IMTYPE_DPX; -#endif } +#endif else if (ftype == IMB_FTYPE_TGA) { if (custom_flags & RAWTGA) { im_format->imtype = R_IMF_IMTYPE_RAWTGA;