git: 9front

Download patch

ref: e93bfa227c982ec98585a1651c0a159c8cdd8dd1
parent: 002a24ec3412e12b9ebe2b8a409a834921c30017
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Feb 16 14:20:57 EST 2014

truss: use A instead of X as address format for data dump

--- a/sys/lib/acid/syscall
+++ b/sys/lib/acid/syscall
@@ -12,7 +12,7 @@
 	i = 0;
 	loop 1, n do {
 		if (a[i]>=127) then {
-			print(fmt(addr, 'X'), ", ", n\D);
+			print(fmt(addr, 'A'), ", ", n\D);
 			return {};
 		}
 		i = i+1;
--