mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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
This commit is contained in:
parent
1710856cb1
commit
3dc761a443
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user