Skip to content
Snippets Groups Projects
Commit 51bf654d authored by Vitor Sessak's avatar Vitor Sessak
Browse files

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
parent a6f88fbc
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment