changeset 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 721d236e04d6
children c75acc216f3f
files asf.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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