shithub: trueawk

Download patch

ref: 2bab10b60b3f4d3bbefdcb60410655f317d1a452
parent: 4d46214525a3b75879ad56fb0105ee01afa7c9dd
author: Arnold D. Robbins <arnold@skeeve.com>
date: Thu Mar 14 10:25:30 EDT 2024

Fix a compiler warning in run.c:do_sub.

--- a/run.c
+++ b/run.c
@@ -2406,7 +2406,7 @@
 Cell *dosub(Node **a, int subop)        /* sub and gsub */
 {
 	fa *pfa;
-	int tempstat;
+	int tempstat = 0;
 	char *repl;
 	Cell *x;
 
--