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>2013-07-20 19:07:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-20 19:07:57 +0400
commit49c61e169bb4114b63d99d842c27d533b8733f82 (patch)
tree2e57f7c064f31e5222ae1dbb8a6e2b1579bd7270 /source/blender/imbuf
parent8ff67f12c79819cc06bb803ef79e7c97f73f2ef1 (diff)
misc edits
- fix for missing None check with recent 'Hidden Wire' draw option. - avoid int overflow with mesh selection. - remove ';' outside of functions.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/jpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/jpeg.c b/source/blender/imbuf/intern/jpeg.c
index 9bb625a64b0..ed4f6d40cee 100644
--- a/source/blender/imbuf/intern/jpeg.c
+++ b/source/blender/imbuf/intern/jpeg.c
@@ -61,7 +61,7 @@
/* the types are from the jpeg lib */
static void jpeg_error(j_common_ptr cinfo)
#ifdef __GNUC__
-__attribute__((noreturn));
+__attribute__((noreturn))
#endif
;
static void init_source(j_decompress_ptr cinfo);