[SCM] libav/experimental: typo, also fix warning: asf.c:90: warning: passing argument 2 of 'get_buffer' from incompatible pointer type

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:12:39 UTC 2013


The following commit has been merged in the experimental branch:
commit 3dc761a443a781ae35a6b1023f4454db0ffe5723
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Thu Jan 31 00:22:25 2008 +0000

    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

diff --git a/libavformat/asf.c b/libavformat/asf.c
index b356a34..ae84ba2 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

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list