Original commit message from CVS:
Fixes #101678
This commit is contained in:
Ronald S. Bultje 2003-04-07 16:41:38 +00:00
parent 53da7b67f1
commit 1c8f28223f

View file

@ -166,8 +166,10 @@ gst_init_check (int *argc, char **argv[])
void
gst_init (int *argc, char **argv[])
{
if (!gst_init_with_popt_table (argc, argv, NULL))
g_error ("Could not initialize GStreamer !\n");
if (!gst_init_with_popt_table (argc, argv, NULL)) {
g_print ("Could not initialize GStreamer !\n");
exit (1);
}
}
/**