Commit a008a7cc authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/ffjni: Fix occured typo

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 89862cd7
......@@ -294,12 +294,12 @@ int ff_jni_exception_get_summary(JNIEnv *env, jthrowable exception, char **error
if (name && message) {
av_bprintf(&bp, "%s: %s", name, message);
} else if (name && !message) {
av_bprintf(&bp, "%s occured", name);
av_bprintf(&bp, "%s occurred", name);
} else if (!name && message) {
av_bprintf(&bp, "Exception: %s", message);
} else {
av_log(log_ctx, AV_LOG_WARNING, "Could not retreive exception name and message\n");
av_bprintf(&bp, "Exception occured");
av_bprintf(&bp, "Exception occurred");
}
ret = av_bprint_finalize(&bp, error);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment