mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
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:
parent
876f4e4722
commit
566f5d8deb
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue