More MSVC warning fixes.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user