gst/gst.c: Fix typo in error message.
authorTim-Philipp Müller <tim@centricular.net>
Fri, 11 Aug 2006 09:59:29 +0000 (09:59 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Fri, 11 Aug 2006 09:59:29 +0000 (09:59 +0000)
Original commit message from CVS:
* gst/gst.c: (gst_init):
Fix typo in error message.

ChangeLog
gst/gst.c

index 1e3bd46..b10a631 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 7f71567..50a4765 100644 (file)
--- a/gst/gst.c
+++ b/gst/gst.c
@@ -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);