bin: fix typo in log message when threadpool alloc fails
authorVineeth TM <vineeth.tm@samsung.com>
Mon, 14 Sep 2015 02:01:11 +0000 (11:01 +0900)
committerTim-Philipp Müller <tim@centricular.com>
Mon, 14 Sep 2015 15:03:51 +0000 (16:03 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=754975

gst/gstbin.c

index 2813f63..3f684bc 100644 (file)
@@ -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);
   }
 }