Looks like "vim" is having some fun with me.

This commit is contained in:
Andy McFadden 2002-09-28 01:02:03 +00:00
parent 771144bcea
commit 70b4604e31
3 changed files with 4 additions and 4 deletions

View File

@ -204,7 +204,7 @@ Nu_CompressToArchive(NuArchive* pArchive, NuDataSource* pDataSource,
&threadCrc);
break;
default:
/* should've been blocked in Value.c */
/* should've been blocked in Value.c */
Assert(0);
err = kNuErrInternal;
goto bail;

View File

@ -136,7 +136,7 @@ Nu_SQGetcCRC(SQState* pSqState, int* pSym)
pSqState->crc = Nu_CalcCRC16(pSqState->crc, &c, 1);
}
*pSym = c;
pSqState->uncompRemaining--;
pSqState->uncompRemaining--;
}
return err;

View File

@ -208,8 +208,8 @@ Nu_ConvertCompressValToFormat(NuArchive* pArchive, NuValue compValue)
case kNuCompressLZW1: threadFormat = kNuThreadFormatLZW1; break;
case kNuCompressLZW2: threadFormat = kNuThreadFormatLZW2; break;
case kNuCompressSQ: threadFormat = kNuThreadFormatHuffmanSQ; break;
case kNuCompressLZC12: threadFormat = kNuThreadFormatLZC12; break;
case kNuCompressLZC16: threadFormat = kNuThreadFormatLZC16; break;
case kNuCompressLZC12: threadFormat = kNuThreadFormatLZC12; break;
case kNuCompressLZC16: threadFormat = kNuThreadFormatLZC16; break;
default:
Assert(false);
Nu_ReportError(NU_BLOB, kNuErrInvalidArg,