diff options
Diffstat (limited to 'libavformat/omaenc.c')
-rw-r--r-- | libavformat/omaenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/omaenc.c b/libavformat/omaenc.c index d89cc37ee0..7952808bf8 100644 --- a/libavformat/omaenc.c +++ b/libavformat/omaenc.c @@ -84,8 +84,8 @@ static av_cold int oma_write_header(AVFormatContext *s) (par->block_align/8 - 1)); break; default: - av_log(s, AV_LOG_ERROR, "unsupported codec tag %d for write\n", - par->codec_tag); + av_log(s, AV_LOG_ERROR, "unsupported codec tag %s for write\n", + av_fourcc2str(par->codec_tag)); return AVERROR(EINVAL); } for (i = 0; i < (EA3_HEADER_SIZE - 36)/4; i++) |