mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
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:
parent
2696ee9c90
commit
83c7c626f0
3 changed files with 11 additions and 2 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue