summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKouhei Sutou <kou@clear-code.com>2015-09-06 18:17:15 +0900
committerSebastian Dröge <sebastian@centricular.com>2015-09-06 18:32:16 +0300
commit3e41e784bedd56c796834aabf022e8a28f79f691 (patch)
tree4401ec321a6155fd990a77e1a048f228e248e379
parent181845ec1bc1761002c0c4253561658bddfb71ae (diff)
downloadgstreamer-plugins-base-3e41e784bedd56c796834aabf022e8a28f79f691.tar.gz
libs: Fix build error on MinGW where "%ll" is not available
"ll" isn't available on MinGW. We can use G_GINT64_MODIFIER for portable 64bit size data modifier. https://bugzilla.gnome.org/show_bug.cgi?id=754630
-rw-r--r--gst-libs/gst/video/video-dither.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/video/video-dither.c b/gst-libs/gst/video/video-dither.c
index 45809e65d..ea5ab999b 100644
--- a/gst-libs/gst/video/video-dither.c
+++ b/gst-libs/gst/video/video-dither.c
@@ -413,7 +413,7 @@ gst_video_dither_new (GstVideoDitherMethod method, GstVideoDitherFlags flags,
}
dither->orc_mask64 = GUINT64_FROM_BE (dither->orc_mask64);
dither->orc_mask32 = GUINT32_FROM_BE (dither->orc_mask32);
- GST_DEBUG ("mask64 %08llx", (unsigned long long int) dither->orc_mask64);
+ GST_DEBUG ("mask64 %08" G_GINT64_MODIFIER "x", (guint64) dither->orc_mask64);
GST_DEBUG ("mask32 %08x", dither->orc_mask32);
switch (method) {