diff options
author | Christian Persch <chpe@gnome.org> | 2009-10-29 18:59:52 +0100 |
---|---|---|
committer | Christian Persch <chpe@gnome.org> | 2009-10-29 18:59:52 +0100 |
commit | be0f71823453ef07b6a8c4b6072bdd6b772c74b1 (patch) | |
tree | ceb0532f58d4c572e4cd234e84fb91388788e78e /src | |
parent | 16db4039b0ea75454c6d51c1a685f3c9d16ffb11 (diff) |
Use right modifier to printf gulong
Fixes a compiler warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/ring.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ _vte_ring_validate (VteRing * ring) { g_assert(ring != NULL); _vte_debug_print(VTE_DEBUG_RING, - " Delta = %u, Length = %u, Max = %u, Writable = %u.\n", + " Delta = %lu, Length = %lu, Max = %lu, Writable = %lu.\n", ring->start, ring->end - ring->start, ring->max, ring->end - ring->writable); |