lib/DtHelp/il: remove register keyword

This commit is contained in:
Jon Trulson
2018-06-27 14:09:44 -06:00
parent 7125b437f1
commit e9d0d91cad
62 changed files with 778 additions and 778 deletions

View File

@@ -57,7 +57,7 @@ IL_PRIVATE ilBool _ilReallocCompressedBuffer (
unsigned long minNewSize
)
{
register ilImagePlaneInfo *pPlane;
ilImagePlaneInfo *pPlane;
pPlane = &pImage->plane[plane];
pPlane->bufferSize = minNewSize + 10000; /* A GUESS - DO SOMETHING SMARTER !!!!! */
@@ -77,12 +77,12 @@ register ilImagePlaneInfo *pPlane;
Copies one strip of compressed data.
*/
static ilError ilCopyCompressedExecute (
register ilExecuteData *pData,
ilExecuteData *pData,
long dstLine,
long *pNLines
)
{
register ilImagePlaneInfo *pSrcPlane, *pDstPlane;
ilImagePlaneInfo *pSrcPlane, *pDstPlane;
long nBytes, dstOffset, requiredBufferSize;
nBytes = pData->compressed.nBytesToRead; /* # of bytes to write */