ref: 0ba1d0391d75532d3e75142bc904f862b0e033a4
parent: 5ff28208dbc73542eea072a4d80bb54b87aa17a2
author: Arnold D. Robbins <arnold@skeeve.com>
date: Tue Oct 8 06:30:09 EDT 2019
Small code formatting fix in run.c.
--- a/run.c
+++ b/run.c
@@ -717,7 +717,7 @@
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;
}
--
⑨