1
0

More MSVC warning fixes.

This commit is contained in:
madmaxoft
2014-01-07 16:00:19 +01:00
parent bcd41dc1aa
commit 39a1bcdea0
9 changed files with 11 additions and 11 deletions

View File

@@ -74,7 +74,7 @@ int CompressStringGZIP(const char * a_Data, int a_Length, AString & a_Compressed
return res;
}
while (true)
for (;;)
{
res = deflate(&strm, Z_FINISH);
switch (res)
@@ -137,7 +137,7 @@ extern int UncompressStringGZIP(const char * a_Data, int a_Length, AString & a_U
return res;
}
while (true)
for (;;)
{
res = inflate(&strm, Z_FINISH);
switch (res)