diff options
| author | Jay Sorg <jay.sorg@gmail.com> | 2017-02-02 11:31:01 -0800 | 
|---|---|---|
| committer | jsorg71 <jay.sorg@gmail.com> | 2017-02-22 20:39:56 -0800 | 
| commit | c5e9bc7851764de1a6c9d893b4e47dcd73cac43f (patch) | |
| tree | 2ac9f55889c176dc9973c7615ad82ad1217fab80 | |
| parent | 7825246d7a1421677a7cd6b6cfcad089bfc81d11 (diff) | |
| download | xrdp-proprietary-c5e9bc7851764de1a6c9d893b4e47dcd73cac43f.tar.gz xrdp-proprietary-c5e9bc7851764de1a6c9d893b4e47dcd73cac43f.zip | |
common: print list items as pointers
| -rw-r--r-- | common/list.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/list.c b/common/list.c index 0a989a1d..b95b3444 100644 --- a/common/list.c +++ b/common/list.c @@ -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));      }  } | 
