diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-04-07 18:52:10 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-04-29 16:21:23 +0200 |
commit | f2422b58756ba97e3cbadc190f1ed950aa201ec7 (patch) | |
tree | bbc5cf5e0eb667b9ffc8329cd7e9a0e29ff0ff3b /libavutil/opt-test.c | |
parent | 5b1409c75563b4a3aca113c34d09e3b5442de47f (diff) | |
download | ffmpeg-f2422b58756ba97e3cbadc190f1ed950aa201ec7.tar.gz |
testprogs: Mark some tables as static const
Diffstat (limited to 'libavutil/opt-test.c')
-rw-r--r-- | libavutil/opt-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/opt-test.c b/libavutil/opt-test.c index 14a144cb86..6262b77e5b 100644 --- a/libavutil/opt-test.c +++ b/libavutil/opt-test.c @@ -68,7 +68,7 @@ int main(void) { int i; TestContext test_ctx = { .class = &test_class }; - const char *options[] = { + static const char *options[] = { "", ":", "=", |