summaryrefslogtreecommitdiff
path: root/libavcodec/faac.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/faac.c')
-rw-r--r--libavcodec/faac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/faac.c b/libavcodec/faac.c
index 740aaf6531..99331df1d7 100644
--- a/libavcodec/faac.c
+++ b/libavcodec/faac.c
@@ -46,7 +46,7 @@ static int Faac_encode_init(AVCodecContext *avctx)
/* check faac version */
faac_cfg = faacEncGetCurrentConfiguration(s->faac_handle);
if (faac_cfg->version != FAAC_CFG_VERSION) {
- av_log(avctx, AV_LOG_ERROR, "wrong libfaac version (compiled for: %d, using %d)\n", FAAC_CFG_VERSION, faac_cfg->version);
+ av_log(avctx, AV_LOG_ERROR, "wrong libfaac version (compiled for: %d, using %d)\n", FAAC_CFG_VERSION, faac_cfg->version);
faacEncClose(s->faac_handle);
return -1;
}