bin: fix typo in log message when threadpool alloc fails

https://bugzilla.gnome.org/show_bug.cgi?id=754975
This commit is contained in:
Vineeth TM 2015-09-14 11:01:11 +09:00 committed by Tim-Philipp Müller
parent 6972e7a926
commit 09900bbfb1

View 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);
}
}