[SCM] libav/experimental: Use sizeof(var) instead of sizeof(type) Commited in SoC by Vitor Sessak on 2008-04-03 19:53:18

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


The following commit has been merged in the experimental branch:
commit 51bf654d796cb59834f050adcccf1ba6bba2abe7
Author: Vitor Sessak <vitor1001 at gmail.com>
Date:   Fri Apr 4 20:09:45 2008 +0000

    Use sizeof(var) instead of sizeof(type)
    Commited in SoC by Vitor Sessak on 2008-04-03 19:53:18
    
    Originally committed as revision 12753 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index 1da5b7b..7e040a4 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -76,7 +76,7 @@ static int query_formats(AVFilterGraph *graph)
                                            link->out_formats)) {
                     AVFilterContext *scale;
                     /* couldn't merge format lists. auto-insert scale filter */
-                    snprintf(inst_name, 30, "auto-inserted scaler %d",
+                    snprintf(inst_name, sizeof(inst_name), "auto-inserted scaler %d",
                              scaler_count);
                     scale =
                         avfilter_open(avfilter_get_by_name("scale"),inst_name);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list