1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Avoided some strict compiler warnings.

This commit is contained in:
jules 2013-04-04 16:47:33 +01:00
parent 0e978e13b1
commit bf3cb2e29b
3 changed files with 6 additions and 3 deletions

View file

@ -346,7 +346,8 @@ bool JPEGImageFormat::writeImageToStream (const Image& image, OutputStream& out)
using namespace jpeglibNamespace;
using namespace JPEGHelpers;
struct jpeg_compress_struct jpegCompStruct;
jpeg_compress_struct jpegCompStruct;
zerostruct (jpegCompStruct);
jpeg_create_compress (&jpegCompStruct);
struct jpeg_error_mgr jerr;