summaryrefslogtreecommitdiff
path: root/sys/lib
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-02-16 19:20:57 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2014-02-16 19:20:57 +0100
commit3df2b18398544184e78446a9e9e25d5be343cf1c (patch)
treec56059de9fb575e640185be1dc2dba1b5f2ce042 /sys/lib
parentc44cbf31656fa7a596a4a230c04de36f3c7bb42c (diff)
truss: use A instead of X as address format for data dump
Diffstat (limited to 'sys/lib')
-rw-r--r--sys/lib/acid/syscall2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/lib/acid/syscall b/sys/lib/acid/syscall
index 1b1c35c50..0f36c9c7c 100644
--- a/sys/lib/acid/syscall
+++ b/sys/lib/acid/syscall
@@ -12,7 +12,7 @@ defn printtextordata(addr, n)
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;