summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-02-15 09:04:17 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-02-15 09:04:17 +0100
commit59dc89b3ee2101887422ef80b7c5e122c9521698 (patch)
treeda129c83503cb7c3fe744b8514833813f344bb78
parente9f101ffc5696be507c6b2c3ce010a45b37ab5ad (diff)
oggparse: Fix another format string compiler warning
-rw-r--r--ext/ogg/gstoggparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ogg/gstoggparse.c b/ext/ogg/gstoggparse.c
index 0d77bd30..a86958b5 100644
--- a/ext/ogg/gstoggparse.c
+++ b/ext/ogg/gstoggparse.c
@@ -529,7 +529,7 @@ gst_ogg_parse_chain (GstPad * pad, GstBuffer * buffer)
GstOggStream *stream = (GstOggStream *) l->data;
if (g_list_length (stream->headers) == 0) {
- GST_LOG_OBJECT (ogg, "No primary header found for stream %u",
+ GST_LOG_OBJECT (ogg, "No primary header found for stream %08lx",
stream->serialno);
goto failure;
}