[FFmpeg-cvslog] r11681 - trunk/libavformat/asf.c
bcoudurier
subversion
Thu Jan 31 01:22:25 CET 2008
Author: bcoudurier
Date: Thu Jan 31 01:22:25 2008
New Revision: 11681
Log:
typo, also fix warning: asf.c:90: warning: passing argument 2 of 'get_buffer' from incompatible pointer type
Modified:
trunk/libavformat/asf.c
Modified: trunk/libavformat/asf.c
==============================================================================
--- trunk/libavformat/asf.c (original)
+++ trunk/libavformat/asf.c Thu Jan 31 01:22:25 2008
@@ -87,7 +87,7 @@ static void print_guid(const GUID *g)
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
More information about the ffmpeg-cvslog
mailing list