diff options
author | Limin Wang <lance.lmwang@gmail.com> | 2021-08-20 19:27:26 +0800 |
---|---|---|
committer | Limin Wang <lance.lmwang@gmail.com> | 2021-09-01 09:32:24 +0800 |
commit | c500dc7cca73efb1289fce7ea1c1c7118800fb84 (patch) | |
tree | 7d2451dcddc98bab56d7e31acf71b4a71b5f357f /fftools | |
parent | 034133a0df5f327aba36ee25db9452cda9e1a62b (diff) | |
download | ffmpeg-c500dc7cca73efb1289fce7ea1c1c7118800fb84.tar.gz |
fftools/cmdutils: Fix warning for initialization makes integer from pointer without a cast
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
Diffstat (limited to 'fftools')
-rw-r--r-- | fftools/cmdutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index 2dd035a7cf..ae341184f6 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -853,7 +853,7 @@ int opt_cpucount(void *optctx, const char *opt, const char *arg) int count; static const AVOption opts[] = { - {"count", NULL, 0, AV_OPT_TYPE_INT, { .i64 = -1}, -1, INT_MAX, NULL}, + {"count", NULL, 0, AV_OPT_TYPE_INT, { .i64 = -1}, -1, INT_MAX}, {NULL}, }; static const AVClass class = { |