mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
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.
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user