common: print list items as pointers
This commit is contained in:
parent
7825246d7a
commit
c5e9bc7851
@ -221,6 +221,6 @@ list_dump_items(struct list *self)
|
||||
|
||||
for (index = 0; index < self->count; index++)
|
||||
{
|
||||
g_writeln("%d: 0x%lx", index, (long) list_get_item(self, index));
|
||||
g_writeln("%d: %p", index, (void *) list_get_item(self, index));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user