diff asf.c @ 136:6b74809d2496 libavformat

Warning and compatibility fixes.
author mellum
date Sat, 24 May 2003 18:48:30 +0000
parents 497ae2790081
children 6c9d6422a2f6
line wrap: on
line diff
--- a/asf.c	Thu May 22 14:12:22 2003 +0000
+++ b/asf.c	Sat May 24 18:48:30 2003 +0000
@@ -993,7 +993,7 @@
     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_seek(AVFormatContext *s, int64_t pts)
 {
-    printf("SEEK TO %Ld", pts);
+    printf("SEEK TO %lld", pts);
     return -1;
 }