Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Bouron <matthieu.bouron@gmail.com>2017-05-21 18:44:12 +0300
committerMatthieu Bouron <matthieu.bouron@gmail.com>2017-05-23 16:25:11 +0300
commit37de7f71758bd0ce2e3912bd70b223a718602e09 (patch)
tree93c22311c1b55ceeb52b3ddf16123543d9489232 /libavcodec
parentfb3228bee8fe55c48bc8c7d3a5342497ae78b730 (diff)
lavc/ffjni: add missing '\n'
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/ffjni.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffjni.c b/libavcodec/ffjni.c
index b2bcae9602..f5b581f0f6 100644
--- a/libavcodec/ffjni.c
+++ b/libavcodec/ffjni.c
@@ -85,7 +85,7 @@ JNIEnv *ff_jni_get_env(void *log_ctx)
av_log(log_ctx, AV_LOG_ERROR, "The specified JNI version is not supported\n");
break;
default:
- av_log(log_ctx, AV_LOG_ERROR, "Failed to get the JNI environment attached to this thread");
+ av_log(log_ctx, AV_LOG_ERROR, "Failed to get the JNI environment attached to this thread\n");
break;
}