Comment correction.
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2209 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -39,7 +39,7 @@ typedef struct
|
|||||||
{
|
{
|
||||||
RES_TYPE numTypes;
|
RES_TYPE numTypes;
|
||||||
/* Number of types in the handlers array (whether NULL or not).
|
/* Number of types in the handlers array (whether NULL or not).
|
||||||
* == the highest stored vector number + 1.
|
* == the highest stored handler number + 1.
|
||||||
*/
|
*/
|
||||||
ResourceHandlers *handlers;
|
ResourceHandlers *handlers;
|
||||||
} ResourceTypeInfo;
|
} ResourceTypeInfo;
|
||||||
|
|||||||
@@ -1517,8 +1517,8 @@ zip_unInitZipStream(z_stream *zipStream) {
|
|||||||
if (retVal != Z_OK) {
|
if (retVal != Z_OK) {
|
||||||
switch (retVal) {
|
switch (retVal) {
|
||||||
case Z_STREAM_ERROR:
|
case Z_STREAM_ERROR:
|
||||||
// This means zipHandle->zipStream is bad, which is
|
// This means zipStream is bad, which is most likely an
|
||||||
// most likely an error in the code using zlib.
|
// error in the code using zlib.
|
||||||
fprintf(stderr, "Fatal: internal error using zlib.\n");
|
fprintf(stderr, "Fatal: internal error using zlib.\n");
|
||||||
abort();
|
abort();
|
||||||
break;
|
break;
|
||||||
@@ -1545,8 +1545,8 @@ zip_reInitZipStream(z_stream *zipStream) {
|
|||||||
if (retVal != Z_OK) {
|
if (retVal != Z_OK) {
|
||||||
switch (retVal) {
|
switch (retVal) {
|
||||||
case Z_STREAM_ERROR:
|
case Z_STREAM_ERROR:
|
||||||
// This means zipHandle->zipStream is bad, which is
|
// This means zipStream is bad, which is most likely an
|
||||||
// most likely an error in the code using zlib.
|
// error in the code using zlib.
|
||||||
fprintf(stderr, "Fatal: internal error using zlib.\n");
|
fprintf(stderr, "Fatal: internal error using zlib.\n");
|
||||||
abort();
|
abort();
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user