diff asf.c @ 2988:bc099b0e8b6f libavformat

typo, also fix warning: asf.c:90: warning: passing argument 2 of 'get_buffer' from incompatible pointer type
author bcoudurier
date Thu, 31 Jan 2008 00:22:25 +0000
parents 46729b573b25
children 6b2d05ded051
line wrap: on
line diff
--- a/asf.c	Wed Jan 30 13:22:31 2008 +0000
+++ b/asf.c	Thu Jan 31 00:22:25 2008 +0000
@@ -87,7 +87,7 @@
 static void get_guid(ByteIOContext *s, GUID *g)
 {
     assert(sizeof(*g) == 16);
-    get_buffer(s, g, sizeof(*g));
+    get_buffer(s, *g, sizeof(*g));
 }
 
 #if 0