diff options
author | David Schleef <ds@schleef.org> | 2004-10-26 05:13:22 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-10-26 05:13:22 +0000 |
commit | 16f55dffbe18563374cf531fff640199c2d734bd (patch) | |
tree | a5085464b81c7ece76d2f945f58dc6002167b168 /examples/gstplay | |
parent | 4ae4808bce6dd4f9c648f2038a84386c39af4de7 (diff) |
examples/:
Original commit message from CVS:
* examples/gstplay/player.c: (got_stream_length), (main):
* examples/seeking/cdplayer.c: (update_scale):
* examples/seeking/seek.c: (format_value), (update_scale):
* examples/seeking/spider_seek.c: (format_value), (update_scale),
(stop_seek):
Diffstat (limited to 'examples/gstplay')
-rw-r--r-- | examples/gstplay/player.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gstplay/player.c b/examples/gstplay/player.c index ca76978e..7a018fe0 100644 --- a/examples/gstplay/player.c +++ b/examples/gstplay/player.c @@ -66,7 +66,7 @@ got_time_tick (GstPlay * play, gint64 time_nanos) static void got_stream_length (GstPlay * play, gint64 length_nanos) { - g_print ("got length %llu\n", length_nanos); + g_print ("got length %" G_GUINT64_FORMAT "\n", length_nanos); length = length_nanos; } |