summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2004-02-24 17:16:07 +0000
committerJohan Dahlin <johan@gnome.org>2004-02-24 17:16:07 +0000
commit2aef6c3d8bdc3600687f4c3f86632097873bd79a (patch)
tree2bafe4c1e7a123b76d73e2ae10dd990d745f6d23
parente5f7bb52506933311b36a8982b275b0e3b727c07 (diff)
downloadgst-plugins-bad-2aef6c3d8bdc3600687f4c3f86632097873bd79a.tar.gz
gst-plugins-bad-2aef6c3d8bdc3600687f4c3f86632097873bd79a.tar.bz2
gst-plugins-bad-2aef6c3d8bdc3600687f4c3f86632097873bd79a.zip
gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
Original commit message from CVS: * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
-rw-r--r--ChangeLog4
-rw-r--r--gst-libs/gst/gconf/gconf.c10
2 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 5407423e..94746aa6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-24 Johan Dahlin <johan@gnome.org>
+
+ * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
+
2004-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
diff --git a/gst-libs/gst/gconf/gconf.c b/gst-libs/gst/gconf/gconf.c
index 49511f90..ba30a894 100644
--- a/gst-libs/gst/gconf/gconf.c
+++ b/gst-libs/gst/gconf/gconf.c
@@ -210,7 +210,7 @@ gst_gconf_get_default_audio_sink (void)
if (!ret)
g_warning ("No GConf default audio sink key and osssink doesn't work");
else
- g_print ("GConf audio sink not found, using osssink");
+ g_print ("GConf audio sink not found, using osssink\n");
}
return ret;
@@ -236,7 +236,7 @@ gst_gconf_get_default_video_sink (void)
if (!ret)
g_warning ("No GConf default video sink key and xvideosink doesn't work");
else
- g_print ("GConf video sink not found, using xvideosink");
+ g_print ("GConf video sink not found, using xvideosink\n");
}
return ret;
@@ -262,7 +262,7 @@ gst_gconf_get_default_audio_src (void)
if (!ret)
g_warning ("No GConf default audio src key and osssrc doesn't work");
else
- g_print ("GConf audio src not found, using osssrc");
+ g_print ("GConf audio src not found, using osssrc\n");
}
return ret;
@@ -289,7 +289,7 @@ gst_gconf_get_default_video_src (void)
if (!ret)
g_warning ("No GConf default video src key and videotestrc doesn't work");
else
- g_print ("GConf video src not found, using videotestrc");
+ g_print ("GConf video src not found, using videotestrc\n");
}
return ret;
@@ -315,7 +315,7 @@ gst_gconf_get_default_visualization_element (void)
if (!ret)
g_warning ("No GConf default visualization plugin key and goom doesn't work");
else
- g_print ("GConf visualization plugin not found, using goom");
+ g_print ("GConf visualization plugin not found, using goom\n");
}
return ret;