1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-03-17 20:17:55 +02:00

lavc/ffjni: add missing '\n'

This commit is contained in:
Matthieu Bouron 2017-05-21 17:44:12 +02:00
parent cbae648eb8
commit 3e38bf95c5

View File

@ -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"); av_log(log_ctx, AV_LOG_ERROR, "The specified JNI version is not supported\n");
break; break;
default: 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; break;
} }