projects
/
platform
/
upstream
/
gst-plugins-ugly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c6b0ca
)
mpegstream: fix warning in macosx snow leopard
author
Josep Torra
<n770galaxy@gmail.com>
Sun, 11 Oct 2009 14:16:09 +0000
(16:16 +0200)
committer
Josep Torra
<n770galaxy@gmail.com>
Sun, 11 Oct 2009 14:16:09 +0000
(16:16 +0200)
gst/mpegstream/gstmpegparse.c
patch
|
blob
|
history
diff --git
a/gst/mpegstream/gstmpegparse.c
b/gst/mpegstream/gstmpegparse.c
index
775f0e7
..
b1fa70c
100644
(file)
--- a/
gst/mpegstream/gstmpegparse.c
+++ b/
gst/mpegstream/gstmpegparse.c
@@
-1165,7
+1165,8
@@
normal_seek (GstMPEGParse * mpeg_parse, GstPad * pad, GstEvent * event)
goto done;
}
GST_INFO_OBJECT (mpeg_parse,
- "Finished conversion of cur, BYTES cur : %lld", start_position);
+ "Finished conversion of cur, BYTES cur : %" G_GINT64_FORMAT,
+ start_position);
} else {
start_position = -1;
}
@@
-1185,7
+1186,8
@@
normal_seek (GstMPEGParse * mpeg_parse, GstPad * pad, GstEvent * event)
goto done;
}
GST_INFO_OBJECT (mpeg_parse,
- "Finished conversion of stop, BYTES stop : %lld", end_position);
+ "Finished conversion of stop, BYTES stop : %" G_GINT64_FORMAT,
+ end_position);
} else {
end_position = -1;
}