Browse code

lavc/ffjni: add missing '\n'

Matthieu Bouron authored on 2017/05/22 00:44:12
Showing 1 changed files
... ...
@@ -85,7 +85,7 @@ JNIEnv *ff_jni_get_env(void *log_ctx)
85 85
         av_log(log_ctx, AV_LOG_ERROR, "The specified JNI version is not supported\n");
86 86
         break;
87 87
     default:
88
-        av_log(log_ctx, AV_LOG_ERROR, "Failed to get the JNI environment attached to this thread");
88
+        av_log(log_ctx, AV_LOG_ERROR, "Failed to get the JNI environment attached to this thread\n");
89 89
         break;
90 90
     }
91 91