[vte] widget: Fix debug printf string



commit c113610d98496b29edf9200ec3b27df00c496c39
Author: Christian Persch <chpe gnome org>
Date:   Wed Apr 23 21:07:18 2014 +0200

    widget: Fix debug printf string
    
    Use G_GSIZE_FORMAT.

 src/vte.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/vte.c b/src/vte.c
index ea04a8d..22fc52d 100644
--- a/src/vte.c
+++ b/src/vte.c
@@ -796,7 +796,7 @@ vte_terminal_emit_commit(VteTerminal *terminal, const gchar *text, gssize length
        char *wrapped = NULL;
 
        _vte_debug_print(VTE_DEBUG_SIGNALS,
-                       "Emitting `commit' of %d bytes.\n", length);
+                       "Emitting `commit' of %" G_GSSIZE_FORMAT" bytes.\n", length);
 
        if (length == -1) {
                length = strlen(text);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]