Commit 3dc761a4 authored by Baptiste Coudurier's avatar Baptiste Coudurier

typo, also fix warning: asf.c:90: warning: passing argument 2 of 'get_buffer'...

typo, also fix warning: asf.c:90: warning: passing argument 2 of 'get_buffer' from incompatible pointer type

Originally committed as revision 11681 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1710856c
...@@ -87,7 +87,7 @@ static void print_guid(const GUID *g) ...@@ -87,7 +87,7 @@ static void print_guid(const GUID *g)
static void get_guid(ByteIOContext *s, GUID *g) static void get_guid(ByteIOContext *s, GUID *g)
{ {
assert(sizeof(*g) == 16); assert(sizeof(*g) == 16);
get_buffer(s, g, sizeof(*g)); get_buffer(s, *g, sizeof(*g));
} }
#if 0 #if 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment