From 26396bfac2699e6b69702a79fb6bda954f822328 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 18 Jun 2015 14:29:33 +0200 Subject: [PATCH] androidmedia: Failing to detach a thread is not that much of a problem Someone else might have detached it before us, so make this just normal debug output instead of a GST_ERROR() --- sys/androidmedia/gstjniutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/androidmedia/gstjniutils.c b/sys/androidmedia/gstjniutils.c index c842db1d89..1583e14725 100644 --- a/sys/androidmedia/gstjniutils.c +++ b/sys/androidmedia/gstjniutils.c @@ -488,7 +488,7 @@ gst_amc_jni_detach_current_thread (void *env) GST_DEBUG ("Detaching thread %p", g_thread_self ()); if ((ret = (*java_vm)->DetachCurrentThread (java_vm)) != JNI_OK) { - GST_ERROR ("Failed to detach current thread: %d", ret); + GST_DEBUG ("Failed to detach current thread: %d", ret); } }