mirror of https://git.ffmpeg.org/ffmpeg.git
fftools/cmdutils: Fix warning for initialization makes integer from pointer without a cast
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
This commit is contained in:
parent
034133a0df
commit
c500dc7cca
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue