avutil/opt: Fix type specifier

This bug has been introduced in 9e0a071e.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Andreas Rheinhardt 2019-09-21 11:15:42 +02:00 committed by Michael Niedermayer
parent 51a2f02117
commit 25a501b528
1 changed files with 1 additions and 1 deletions

View File

@ -1200,7 +1200,7 @@ static void opt_list(void *obj, void *av_log_obj, const char *unit,
break; break;
case AV_OPT_TYPE_CONST: case AV_OPT_TYPE_CONST:
if (parent_type == AV_OPT_TYPE_INT) if (parent_type == AV_OPT_TYPE_INT)
av_log(av_log_obj, AV_LOG_INFO, "%-12d ", opt->default_val.i64); av_log(av_log_obj, AV_LOG_INFO, "%-12"PRId64" ", opt->default_val.i64);
else else
av_log(av_log_obj, AV_LOG_INFO, "%-12s ", ""); av_log(av_log_obj, AV_LOG_INFO, "%-12s ", "");
break; break;