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:
parent
4eecccfd92
commit
8fb779e2fb
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue