From 3dc761a443a781ae35a6b1023f4454db0ffe5723 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Thu, 31 Jan 2008 00:22:25 +0000 Subject: 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 --- libavformat/asf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/asf.c') diff --git a/libavformat/asf.c b/libavformat/asf.c index b356a34459..ae84ba2253 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -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 -- cgit v1.2.3