git: 9front

Download patch

ref: 15e4633025ddc0f88f39ef19f37505b9f6ace99f
parent: f8f01ac1cb98c801fb20ff371c9d2f08407595ad
author: mia soweli <inbox@tachibana-labs.org>
date: Mon May 22 09:08:42 EDT 2023

libaml: replace ResEnd with it's value.

only had this enum locally, sorry :(

--- a/sys/src/libaml/aml.c
+++ b/sys/src/libaml/aml.c
@@ -1732,7 +1732,7 @@
 	memmove(r, a, n);
 	memmove((uchar*)r + n, b, m);
 
-	c[0] = ResEnd;
+	c[0] = 0x78;
 	c[1] = 0;
 	memmove((uchar*)r + n + m, c, 2);
 
--