diff --git a/run.c b/run.c index 989b8b3..2ab3e72 100644 --- a/run.c +++ b/run.c @@ -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; }