summaryrefslogtreecommitdiff
path: root/libavformat/asf.c
diff options
context:
space:
mode:
authorFalk Hüffner <mellum@users.sourceforge.net>2003-05-24 18:48:30 +0000
committerFalk Hüffner <mellum@users.sourceforge.net>2003-05-24 18:48:30 +0000
commit4cfbf61bf173e303e253d95717d5038c8c8c529c (patch)
tree329da6e4dd478648a38326868adf19d0758aeb5c /libavformat/asf.c
parentf184683552090cc9d38a7b1c8d27bb348a2ef7b4 (diff)
Warning and compatibility fixes.
Originally committed as revision 1902 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r--libavformat/asf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c
index e9826adb79..602c3ef0f4 100644
--- a/libavformat/asf.c
+++ b/libavformat/asf.c
@@ -993,7 +993,7 @@ static int asf_get_packet(AVFormatContext *s)
int c = get_byte(pb);
if (c != 0x82) {
if (!url_feof(pb))
- printf("ff asf bad header %x at:%Ld\n", c, url_ftell(pb));
+ printf("ff asf bad header %x at:%lld\n", c, url_ftell(pb));
return -EIO;
}
if ((c & 0x0f) == 2) { // always true for now
@@ -1220,7 +1220,7 @@ static int asf_read_close(AVFormatContext *s)
static int asf_read_seek(AVFormatContext *s, int64_t pts)
{
- printf("SEEK TO %Ld", pts);
+ printf("SEEK TO %lld", pts);
return -1;
}