From 8a61ea7296f17428f062a840c560e08a5a2f72ea Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 19 Jan 2019 13:21:18 +1100 Subject: Cleanup: add trailing commas Prevents clang-format merging into a single line. --- source/blender/imbuf/intern/cineon/logImageCore.h | 6 +++--- source/blender/imbuf/intern/util.c | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'source/blender/imbuf') diff --git a/source/blender/imbuf/intern/cineon/logImageCore.h b/source/blender/imbuf/intern/cineon/logImageCore.h index b6f4fff73f6..f696d1b44d8 100644 --- a/source/blender/imbuf/intern/cineon/logImageCore.h +++ b/source/blender/imbuf/intern/cineon/logImageCore.h @@ -49,7 +49,7 @@ extern "C" { /* There are some differences between DPX and Cineon so we need to know from what type of file the datas come from */ enum format { format_DPX, - format_Cineon + format_Cineon, }; typedef struct LogImageElement { @@ -125,7 +125,7 @@ enum transfer { transfer_NTSC, transfer_PAL, transfer_ZLinear, - transfer_Homogeneous + transfer_Homogeneous, }; /* The SMPTE defines this code: @@ -179,7 +179,7 @@ enum descriptor { descriptor_UserDefined7Elt, descriptor_UserDefined8Elt, /* following descriptors are for internal use only */ - descriptor_YA + descriptor_YA, }; /* int functions return 0 for OK */ diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c index 6a095b2da1f..38591adbaa2 100644 --- a/source/blender/imbuf/intern/util.c +++ b/source/blender/imbuf/intern/util.c @@ -92,14 +92,14 @@ const char *imb_ext_image[] = { #ifdef WITH_OPENIMAGEIO ".psd", ".pdd", ".psb", #endif - NULL + NULL, }; const char *imb_ext_image_filepath_only[] = { #ifdef WITH_OPENIMAGEIO ".psd", ".pdd", ".psb", #endif - NULL + NULL, }; const char *imb_ext_movie[] = { @@ -131,7 +131,7 @@ const char *imb_ext_movie[] = { ".xvid", ".mxf", ".webm", - NULL + NULL, }; /* sort of wrong being here... */ @@ -150,7 +150,7 @@ const char *imb_ext_audio[] = { ".aiff", ".m4a", ".mka", - NULL + NULL, }; int IMB_ispic_type(const char *name) -- cgit v1.2.3