diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:40:32 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:40:32 +0000 |
commit | dd8e311e70aee2860daece39f2a36466c8fd1fcc (patch) | |
tree | 34db8d4056083eb398ce6517bbfbe63d2f39612b /libavfilter | |
parent | cf4f7d38d093bff89ca2d96d01f448c1e617075b (diff) | |
download | ffmpeg-dd8e311e70aee2860daece39f2a36466c8fd1fcc.tar.gz |
10l: Missed that in one of the last commits
Commited in SoC by Vitor Sessak on 2008-04-21 18:39:38
Originally committed as revision 13320 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/graphparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index a4b423ba51..714ab276bb 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -38,7 +38,7 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index, snprintf(inst_name, sizeof(inst_name), "Parsed filter %d", index); if(!(filterdef = avfilter_get_by_name(name))) { - av_log(&log_ctx, AV_LOG_ERROR, + av_log(log_ctx, AV_LOG_ERROR, "no such filter: '%s'\n", name); return NULL; } |