[gimp] app: Fix format specifier



commit 8adb3090c84b64e800bb2efd7c29e6253d9cd75c
Author: Mukund Sivaraman <muks banu com>
Date:   Fri May 2 23:26:09 2014 +0530

    app: Fix format specifier

 app/widgets/gimpdnd.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/app/widgets/gimpdnd.c b/app/widgets/gimpdnd.c
index 5f52a00..c7ee818 100644
--- a/app/widgets/gimpdnd.c
+++ b/app/widgets/gimpdnd.c
@@ -1427,7 +1427,7 @@ gimp_dnd_get_stream_data (GtkWidget        *widget,
   stream = (* (GimpDndDragStreamFunc) get_stream_func) (widget, &stream_length,
                                                         get_stream_data);
 
-  GIMP_LOG (DND, "stream %p, length %d", stream, stream_length);
+  GIMP_LOG (DND, "stream %p, length %" G_GSIZE_FORMAT, stream, stream_length);
 
   if (stream)
     {
@@ -1449,7 +1449,7 @@ gimp_dnd_set_stream_data (GtkWidget        *widget,
 
   stream = gimp_selection_data_get_stream (selection, &stream_length);
 
-  GIMP_LOG (DND, "stream %p, length %d", stream, stream_length);
+  GIMP_LOG (DND, "stream %p, length %" G_GSIZE_FORMAT, stream, stream_length);
 
   if (! stream)
     return FALSE;


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