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:
Limin Wang 2021-08-20 19:27:26 +08:00
parent 034133a0df
commit c500dc7cca
1 changed files with 1 additions and 1 deletions

View File

@ -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 = {