aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/acid/list.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2012-02-19 18:11:39 -0500
committerRuss Cox <rsc@swtch.com>2012-02-19 18:11:39 -0500
commit443d6288386f5521efa7d49bc8ea5be04f5fd696 (patch)
tree443a41a36f0bb96502fe218c4423a9e5571d7e17 /src/cmd/acid/list.c
parent60d96f2e4385f0b4cee12add6dea545880a0e6a1 (diff)
downloadplan9port-443d6288386f5521efa7d49bc8ea5be04f5fd696.tar.gz
plan9port-443d6288386f5521efa7d49bc8ea5be04f5fd696.tar.bz2
plan9port-443d6288386f5521efa7d49bc8ea5be04f5fd696.zip
libmach, acid, db: 64-bit support
Diffstat (limited to 'src/cmd/acid/list.c')
-rw-r--r--src/cmd/acid/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/acid/list.c b/src/cmd/acid/list.c
index b75d0d70..2c26426e 100644
--- a/src/cmd/acid/list.c
+++ b/src/cmd/acid/list.c
@@ -196,7 +196,7 @@ listregisters(Map *map, Regs *regs)
{
List **tail, *l2, *l;
Regdesc *rp;
- ulong v;
+ u64int v;
l2 = 0;
tail = &l2;
@@ -255,7 +255,7 @@ listautos(Map *map, Regs *regs, Symbol *fn)
}
int
-trlist(Map *map, Regs *regs, ulong pc, ulong callerpc, Symbol *sym, int depth)
+trlist(Map *map, Regs *regs, u64int pc, u64int callerpc, Symbol *sym, int depth)
{
List *q, *l;
static List **tail;