about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--apps/mu.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/mu.subx b/apps/mu.subx
index 91a3393c..5c4edd8a 100644
--- a/apps/mu.subx
+++ b/apps/mu.subx
@@ -5753,7 +5753,7 @@ test-parse-mu-stmt:
     #
     (push %ecx %edx)
     # convert
-    (parse-mu-stmt _test-input-stream %ecx)  # => eax
+    (parse-mu-stmt _test-input-stream %ecx 0)  # => eax
     # check result
     (check-ints-equal *eax 1 "F - test-parse-mu-stmt/tag")  # Stmt-tag is Stmt1
     (check-strings-equal *(eax+4) "increment" "F - test-parse-mu-stmt/name")  # Stmt1-operation
@@ -5789,7 +5789,7 @@ test-parse-mu-stmt-with-comma:
     #
     (push %ecx %edx)
     # convert
-    (parse-mu-stmt _test-input-stream %ecx)  # => eax
+    (parse-mu-stmt _test-input-stream %ecx 0)  # => eax
     # check result
     (check-ints-equal *eax 1 "F - test-parse-mu-stmt-with-comma/tag")  # Stmt-tag is Stmt1
     (check-strings-equal *(eax+4) "copy-to" "F - test-parse-mu-stmt-with-comma/name")  # Stmt1-operation