diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-06-10 16:45:06 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-06-12 11:01:10 +0200 |
commit | 97cfe1d8bd1968143e2ba9aa46ebe9504a835e24 (patch) | |
tree | e68f3a7dd9aa9b56cf6920890fe2f4caec6b98cd /libavutil/tests/opt.c | |
parent | 98ea98069b40c34aa7b762096f8f380012a7dd84 (diff) | |
download | ffmpeg-97cfe1d8bd1968143e2ba9aa46ebe9504a835e24.tar.gz |
Convert all AVClass struct declarations to designated initializers.
Diffstat (limited to 'libavutil/tests/opt.c')
-rw-r--r-- | libavutil/tests/opt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/tests/opt.c b/libavutil/tests/opt.c index 350ce3d820..9ed9d2b6b1 100644 --- a/libavutil/tests/opt.c +++ b/libavutil/tests/opt.c @@ -59,9 +59,9 @@ static const char *test_get_name(void *ctx) } static const AVClass test_class = { - "TestContext", - test_get_name, - test_options + .class_name = "TestContext", + .item_name = test_get_name, + .option = test_options, }; int main(void) |