Small code formatting fix in run.c.

This commit is contained in:
Arnold D. Robbins 2019-10-08 10:30:09 +03:00
parent 5ff28208db
commit 0ba1d0391d
1 changed files with 1 additions and 1 deletions

2
run.c
View File

@ -717,7 +717,7 @@ Cell *gettemp(void) /* get a tempcell */
tmps = (Cell *) calloc(100, sizeof(Cell));
if (!tmps)
FATAL("out of space for temporaries");
for(i = 1; i < 100; i++)
for (i = 1; i < 100; i++)
tmps[i-1].cnext = &tmps[i];
tmps[i-1].cnext = NULL;
}