diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-01-31 00:22:25 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-01-31 00:22:25 +0000 |
commit | 3dc761a443a781ae35a6b1023f4454db0ffe5723 (patch) | |
tree | 9c0004bc14f8b26cf73d20f1d9d98c3e44cfe21a | |
parent | 1710856cb1a4dc1832826ad74e1a8843354ed7ac (diff) | |
download | ffmpeg-3dc761a443a781ae35a6b1023f4454db0ffe5723.tar.gz |
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
-rw-r--r-- | libavformat/asf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |