mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -853,7 +853,7 @@ int opt_cpucount(void *optctx, const char *opt, const char *arg)
|
||||||
int count;
|
int count;
|
||||||
|
|
||||||
static const AVOption opts[] = {
|
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},
|
{NULL},
|
||||||
};
|
};
|
||||||
static const AVClass class = {
|
static const AVClass class = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue