From 0ba1d0391d75532d3e75142bc904f862b0e033a4 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Tue, 8 Oct 2019 10:30:09 +0300 Subject: [PATCH] Small code formatting fix in run.c. --- run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }