summaryrefslogtreecommitdiff
path: root/libavformat/westwood_vqa.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-27 09:45:35 +0200
committerClément Bœsch <u@pkh.me>2017-03-29 14:49:29 +0200
commitbec96a7286bc415dd737c8c8f430f0176999e720 (patch)
treeb89f90048e94b153a4a3d7e494d93c57cc7db0a2 /libavformat/westwood_vqa.c
parentd3cedc54cc872a376851828c88103c653fc8c395 (diff)
lavf: use av_fourcc2str() where appropriate
Diffstat (limited to 'libavformat/westwood_vqa.c')
-rw-r--r--libavformat/westwood_vqa.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libavformat/westwood_vqa.c b/libavformat/westwood_vqa.c
index 3635c6ab36..5a54f130a0 100644
--- a/libavformat/westwood_vqa.c
+++ b/libavformat/westwood_vqa.c
@@ -144,9 +144,8 @@ static int wsvqa_read_header(AVFormatContext *s)
break;
default:
- av_log (s, AV_LOG_ERROR, " note: unknown chunk seen (%c%c%c%c)\n",
- scratch[0], scratch[1],
- scratch[2], scratch[3]);
+ av_log(s, AV_LOG_ERROR, " note: unknown chunk seen (%s)\n",
+ av_fourcc2str(chunk_tag));
break;
}