diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-04-10 13:59:27 -0700 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-04-21 21:21:17 -0700 |
commit | e65bd6b7d7c8177def8fa7c23875b1f0ff13d7ce (patch) | |
tree | 420ed3bc0f627bd776219635191cdfdddb49a118 /common | |
parent | bd0b1acf794b2552b13bd4185c8eef91b2d9784c (diff) | |
download | xrdp-proprietary-e65bd6b7d7c8177def8fa7c23875b1f0ff13d7ce.tar.gz xrdp-proprietary-e65bd6b7d7c8177def8fa7c23875b1f0ff13d7ce.zip |
Fix more format warnings
Diffstat (limited to 'common')
-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 abab2fab..5873d41d 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: %s", index, list_get_item(self, index)); + g_writeln("%d: 0x%lx", index, list_get_item(self, index)); } } |