diff options
author | Johan Dahlin <johan@gnome.org> | 2004-02-24 17:16:07 +0000 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2004-02-24 17:16:07 +0000 |
commit | 2aef6c3d8bdc3600687f4c3f86632097873bd79a (patch) | |
tree | 2bafe4c1e7a123b76d73e2ae10dd990d745f6d23 /gst-libs | |
parent | e5f7bb52506933311b36a8982b275b0e3b727c07 (diff) | |
download | gst-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
Diffstat (limited to 'gst-libs')
-rw-r--r-- | gst-libs/gst/gconf/gconf.c | 10 |
1 files changed, 5 insertions, 5 deletions
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; |