projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59224d7
)
qtdemux: use G_GSIZE_FORMAT for platform independent gsize qualifier
author
Edward Hervey
<bilboed@bilboed.com>
Tue, 12 Jan 2010 16:39:05 +0000
(17:39 +0100)
committer
Edward Hervey
<bilboed@bilboed.com>
Tue, 12 Jan 2010 16:39:05 +0000
(17:39 +0100)
Fixes build on macosx
gst/qtdemux/qtdemux.c
patch
|
blob
|
history
diff --git
a/gst/qtdemux/qtdemux.c
b/gst/qtdemux/qtdemux.c
index 899ddacadeb8f2e9aae1ec69a334d2c5f531ecd7..a6b5013d3aaecd84e8f886b9e2347bdb9d2c5556 100644
(file)
--- a/
gst/qtdemux/qtdemux.c
+++ b/
gst/qtdemux/qtdemux.c
@@
-4156,7
+4156,8
@@
qtdemux_stbl_init (GstQTDemux * qtdemux, QtDemuxStream * stream, GNode * stbl)
return FALSE;
}
- GST_DEBUG_OBJECT (qtdemux, "allocating n_samples %u * %d = (%u MB)",
+ GST_DEBUG_OBJECT (qtdemux,
+ "allocating n_samples %u * %" G_GSIZE_FORMAT " = (%u MB)",
stream->n_samples, sizeof (QtDemuxSample),
(guint) (stream->n_samples * sizeof (QtDemuxSample)) >> 20);