Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-03-28 05:06:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-28 05:06:43 +0400
commitc9e1ced4ddc9c801bdd68cc1ac6f5e99768fe108 (patch)
tree644489fcbb0951ec2029fee42b459ed42a09d54c /source/blender/imbuf/intern/tiff.c
parent48afa89dd2a2d9126a1f8d85ca49bee0b1c6c300 (diff)
code cleanup: (dont include ';' in defines), last commit also missed changes to paint_image.c
Diffstat (limited to 'source/blender/imbuf/intern/tiff.c')
-rw-r--r--source/blender/imbuf/intern/tiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/tiff.c b/source/blender/imbuf/intern/tiff.c
index 5a8caa8769f..3fbeb6a957d 100644
--- a/source/blender/imbuf/intern/tiff.c
+++ b/source/blender/imbuf/intern/tiff.c
@@ -85,7 +85,7 @@ typedef struct ImbTIFFMemFile {
toff_t offset; /* Current offset within the file. */
tsize_t size; /* Size of the TIFF file. */
} ImbTIFFMemFile;
-#define IMB_TIFF_GET_MEMFILE(x) ((ImbTIFFMemFile*)(x));
+#define IMB_TIFF_GET_MEMFILE(x) ((ImbTIFFMemFile*)(x))