lib/DtHelp: remove register keyword
This commit is contained in:
@@ -317,7 +317,7 @@ TermStrDraw (
|
||||
pTerm->lines[y] = (wchar_t *) malloc (sizeof(wchar_t) * (length + 1));
|
||||
if (pTerm->lines[y] != NULL)
|
||||
{
|
||||
register int i;
|
||||
int i;
|
||||
|
||||
wcStr = pTerm->lines[y];
|
||||
_DtHelpProcessLock();
|
||||
@@ -340,7 +340,7 @@ TermStrDraw (
|
||||
(sizeof(wchar_t) * (length + 1)));
|
||||
if (pTerm->lines[y] != NULL)
|
||||
{
|
||||
register int i;
|
||||
int i;
|
||||
wcStr = pTerm->lines[y];
|
||||
_DtHelpProcessLock();
|
||||
for (i = pTerm->wc_num[y]; i < x; i++)
|
||||
@@ -669,7 +669,7 @@ static void
|
||||
DeallocateHyperArray(
|
||||
DtHelpHyperLines *array_ptr )
|
||||
{
|
||||
register DtHelpHyperLines *next = array_ptr;
|
||||
DtHelpHyperLines *next = array_ptr;
|
||||
|
||||
if (array_ptr)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user