diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-16 19:20:57 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-16 19:20:57 +0100 |
commit | 3df2b18398544184e78446a9e9e25d5be343cf1c (patch) | |
tree | c56059de9fb575e640185be1dc2dba1b5f2ce042 /sys/lib/acid | |
parent | c44cbf31656fa7a596a4a230c04de36f3c7bb42c (diff) |
truss: use A instead of X as address format for data dump
Diffstat (limited to 'sys/lib/acid')
-rw-r--r-- | sys/lib/acid/syscall | 2 |
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; |