testsuite/caps/renegotiate.c: improve output in error case

Original commit message from CVS:
* testsuite/caps/renegotiate.c: (main):
improve output in error case
This commit is contained in:
Benjamin Otte 2004-05-04 19:41:51 +00:00
parent 2696ee9c90
commit 83c7c626f0
3 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-05-04 Benjamin Otte <otte@gnome.org>
* testsuite/caps/renegotiate.c: (main):
improve output in error case
2004-05-04 Benjamin Otte <otte@gnome.org>
* gst/parse/grammar.y:

View file

@ -71,7 +71,9 @@ main (int argc, char *argv[])
if (error != NULL) {
g_print
("oops, couldn't build pipeline. You probably don't have audioconvert or sinesrc\n");
("oops, couldn't build pipeline. You probably don't have audioconvert or sinesrc\n"
"the error was: %s\n", error->message);
g_error_free (error);
exit (0);
}

View file

@ -71,7 +71,9 @@ main (int argc, char *argv[])
if (error != NULL) {
g_print
("oops, couldn't build pipeline. You probably don't have audioconvert or sinesrc\n");
("oops, couldn't build pipeline. You probably don't have audioconvert or sinesrc\n"
"the error was: %s\n", error->message);
g_error_free (error);
exit (0);
}