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:
meep-eep
2006-01-20 05:51:42 +00:00
parent 545b02f711
commit e23427e560
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ typedef struct
{
RES_TYPE numTypes;
/* 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;
} ResourceTypeInfo;
+4 -4
View File
@@ -1517,8 +1517,8 @@ zip_unInitZipStream(z_stream *zipStream) {
if (retVal != Z_OK) {
switch (retVal) {
case Z_STREAM_ERROR:
// This means zipHandle->zipStream is bad, which is
// most likely an error in the code using zlib.
// This means zipStream is bad, which is most likely an
// error in the code using zlib.
fprintf(stderr, "Fatal: internal error using zlib.\n");
abort();
break;
@@ -1545,8 +1545,8 @@ zip_reInitZipStream(z_stream *zipStream) {
if (retVal != Z_OK) {
switch (retVal) {
case Z_STREAM_ERROR:
// This means zipHandle->zipStream is bad, which is
// most likely an error in the code using zlib.
// This means zipStream is bad, which is most likely an
// error in the code using zlib.
fprintf(stderr, "Fatal: internal error using zlib.\n");
abort();
break;