mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/tests/filtfmts: Constify a variable.
Fixes the following warning: libavfilter/tests/filtfmts.c: In function ‘main’: libavfilter/tests/filtfmts.c:103:18: warning: assignment discards ‘const’ qualifier from pointer target type
This commit is contained in:
parent
acf70639fb
commit
3c14547eb7
|
@ -73,7 +73,7 @@ static void print_formats(AVFilterContext *filter_ctx)
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
AVFilter *filter;
|
const AVFilter *filter;
|
||||||
AVFilterContext *filter_ctx;
|
AVFilterContext *filter_ctx;
|
||||||
AVFilterGraph *graph_ctx;
|
AVFilterGraph *graph_ctx;
|
||||||
const char *filter_name;
|
const char *filter_name;
|
||||||
|
|
Loading…
Reference in New Issue