From 18b1381c5f14887025763d7dbb2fd58b3fe060dd Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 10 Aug 2013 18:32:06 +0200 Subject: [PATCH] avutil/opt: fix av_log type Signed-off-by: Michael Niedermayer --- libavutil/opt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/opt.c b/libavutil/opt.c index 5a679926a1..8354a25a27 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -946,7 +946,7 @@ static void opt_list(void *obj, void *av_log_obj, const char *unit, av_log(av_log_obj, AV_LOG_INFO, " (default "); switch (opt->type) { case AV_OPT_TYPE_FLAGS: - av_log(av_log_obj, AV_LOG_INFO, "%0llX", opt->default_val.i64); + av_log(av_log_obj, AV_LOG_INFO, "%"PRIX64, opt->default_val.i64); break; case AV_OPT_TYPE_DURATION: case AV_OPT_TYPE_INT: