From a35e4e70532993331089e184b362372e3755775a Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 6 Feb 2003 01:52:26 +0000 Subject: [PATCH] Change %lld format to G_INT64_FORMAT Original commit message from CVS: Change %lld format to G_INT64_FORMAT --- gst/autoplug/gstspideridentity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/autoplug/gstspideridentity.c b/gst/autoplug/gstspideridentity.c index 8d5b606b26..dce71bc67c 100644 --- a/gst/autoplug/gstspideridentity.c +++ b/gst/autoplug/gstspideridentity.c @@ -190,7 +190,7 @@ gst_spider_identity_chain (GstPad *pad, GstBuffer *buf) if ((ident->src != NULL) && (GST_PAD_PEER (ident->src) != NULL)) { /* g_print("pushing buffer %p (refcount %d - buffersize %d) to pad %s:%s\n", buf, GST_BUFFER_REFCOUNT (buf), GST_BUFFER_SIZE (buf), GST_DEBUG_PAD_NAME (ident->src)); */ - GST_DEBUG (0, "push %p %lld", buf, GST_BUFFER_OFFSET (buf)); + GST_DEBUG (0, "push %p %" G_GINT64_FORMAT, buf, GST_BUFFER_OFFSET (buf)); gst_pad_push (ident->src, buf); } else if (GST_IS_BUFFER (buf)) { gst_buffer_unref (buf);