1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Minor change to avoid a compiler warning.

This commit is contained in:
jules 2015-03-30 14:08:18 +01:00
parent 4eecccfd92
commit 8fb779e2fb

View file

@ -90,7 +90,7 @@ namespace zlibNamespace
class GZIPDecompressorInputStream::GZIPDecompressHelper
{
public:
GZIPDecompressHelper (Format format)
GZIPDecompressHelper (Format f)
: finished (true),
needsDictionary (false),
error (true),
@ -100,7 +100,7 @@ public:
{
using namespace zlibNamespace;
zerostruct (stream);
streamIsValid = (inflateInit2 (&stream, getBitsForFormat (format)) == Z_OK);
streamIsValid = (inflateInit2 (&stream, getBitsForFormat (f)) == Z_OK);
finished = error = ! streamIsValid;
}