gst/gst.c: Fix typo in error message.

Original commit message from CVS:
* gst/gst.c: (gst_init):
Fix typo in error message.
This commit is contained in:
Tim-Philipp Müller 2006-08-11 09:59:29 +00:00
parent 876f4e4722
commit 566f5d8deb
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-08-11 Tim-Philipp Müller <tim at centricular dot net>
* gst/gst.c: (gst_init):
Fix typo in error message.
2006-08-10 Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/gstcontroller.h:

View file

@ -385,7 +385,7 @@ gst_init (int *argc, char **argv[])
GError *err = NULL;
if (!gst_init_check (argc, argv, &err)) {
g_print ("Could not initialized GStreamer: %s\n",
g_print ("Could not initialize GStreamer: %s\n",
err ? err->message : "unknown error occurred");
if (err) {
g_error_free (err);