diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2008-12-25 11:55:27 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2008-12-25 11:55:27 +0100 |
commit | 083c43e22efb5353a258827a9e6f2f995cfe822d (patch) | |
tree | e63fafb2dbc57bcf120234e96e48ea755502f546 /lib/resource.c | |
parent | 165a62272720071ca5e9ed1badfddc78b7a7af10 (diff) |
fixes some 64-bit related bugs.
Filter code used 'aux' integer field of 'symbol' struct to store ptr
to next symbol and both 'aux2' and 'def' fields for value.
Changed to just 'def' for value and 'aux2' for ptr to next symbol.
Also another minor bugfix.
Diffstat (limited to 'lib/resource.c')
-rw-r--r-- | lib/resource.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/resource.c b/lib/resource.c index 1b915073..9e626815 100644 --- a/lib/resource.c +++ b/lib/resource.c @@ -165,8 +165,8 @@ rdump(void *res) char x[16]; resource *r = res; - bsprintf(x, "%%%ds%%08x ", indent); - debug(x, "", (int) r); + bsprintf(x, "%%%ds%%p ", indent); + debug(x, "", r); if (r) { debug("%s ", r->class->name); |