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>2015-11-19 08:16:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-19 14:52:13 +0300
commitae8e4d37180b0fd24a6565551a8d63101555cad9 (patch)
tree3aba99a7a98f6cff334957cfb357b2f474891b17 /source/blender/imbuf/intern/png.c
parentb8c40d47e0348a057e7fa7c49f49077f86a51d43 (diff)
Cleanup: redundant 'break', minor edits
Diffstat (limited to 'source/blender/imbuf/intern/png.c')
-rw-r--r--source/blender/imbuf/intern/png.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/png.c b/source/blender/imbuf/intern/png.c
index 744a05c7091..5192e3f2d26 100644
--- a/source/blender/imbuf/intern/png.c
+++ b/source/blender/imbuf/intern/png.c
@@ -600,7 +600,6 @@ ImBuf *imb_loadpng(const unsigned char *mem, size_t size, int flags, char colors
default:
printf("PNG format not supported\n");
longjmp(png_jmpbuf(png_ptr), 1);
- break;
}
ibuf = IMB_allocImBuf(width, height, 8 * bytesperpixel, 0);