From 09900bbfb1eb1411de13e3d25a7d2862311574e5 Mon Sep 17 00:00:00 2001 From: Vineeth TM Date: Mon, 14 Sep 2015 11:01:11 +0900 Subject: [PATCH] bin: fix typo in log message when threadpool alloc fails https://bugzilla.gnome.org/show_bug.cgi?id=754975 --- gst/gstbin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstbin.c b/gst/gstbin.c index 2813f63..3f684bc 100644 --- a/gst/gstbin.c +++ b/gst/gstbin.c @@ -475,7 +475,7 @@ gst_bin_class_init (GstBinClass * klass) klass->pool = g_thread_pool_new ((GFunc) gst_bin_continue_func, NULL, -1, FALSE, &err); if (err != NULL) { - g_critical ("could alloc threadpool %s", err->message); + g_critical ("could not alloc threadpool %s", err->message); } } -- 2.7.4