shithub: MicroHs

Download patch

ref: 7400f507a879504ef41a8dc6f4fcd3beac56b2cb
parent: 864e2ee5e90165bca4f8a410782d2ad9347be0c9
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Thu Feb 1 08:58:31 EST 2024

Silence a warning.

--- a/src/runtime/eval.c
+++ b/src/runtime/eval.c
@@ -756,7 +756,7 @@
 {
   stackptr_t stk = stack_ptr;
   NODEPTR n;
-  NODEPTR *to_push;
+  NODEPTR *to_push = 0;         /* silence warning by initializing */
 #if GCRED
   value_t val;
 #endif
--