summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--ext/ivorbis/vorbisfile.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 24875b00..f5c7b399 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-02-10 Jan Schmidt <jan.schmidt@sun.com>
+
+ * ext/ivorbis/vorbisfile.c:
+ Trivial fix for build warning.
+ Patch by: Josep Torre Valles <josep@fluendo.com>
+ Fixes: #515588
+
2008-02-10 Edgard Lima <edgard.lima@indt.org.br>
* ext/metadata/TODO:
diff --git a/ext/ivorbis/vorbisfile.c b/ext/ivorbis/vorbisfile.c
index 82743bd1..6ee71ef0 100644
--- a/ext/ivorbis/vorbisfile.c
+++ b/ext/ivorbis/vorbisfile.c
@@ -386,7 +386,7 @@ gst_ivorbisfile_read (void *ptr, size_t size, size_t nmemb, void *datasource)
}
static int
-gst_ivorbisfile_seek (void *datasource, int64_t offset, int whence)
+gst_ivorbisfile_seek (void *datasource, ogg_int64_t offset, int whence)
{
Ivorbisfile *ivorbisfile = GST_IVORBISFILE (datasource);
guint64 pending_offset = ivorbisfile->offset;