don't put crap in user-visible strings
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 26 Oct 2005 13:01:20 +0000 (13:01 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Wed, 26 Oct 2005 13:01:20 +0000 (13:01 +0000)
Original commit message from CVS:
don't put crap in user-visible strings

gst/tta/gstttaparse.c

index 9aea2e7..cb37ea0 100644 (file)
@@ -469,8 +469,7 @@ pause:
   gst_pad_pause_task (ttaparse->sinkpad);
   if (GST_FLOW_IS_FATAL (ret)) {
     GST_ELEMENT_ERROR (ttaparse, STREAM, FAILED,
-        ("streaming stopped, reason %d", ret),
-        ("streaming stopped, reason %d", ret));
+        ("Internal data stream error."), ("streaming stopped, reason %d", ret));
     gst_pad_push_event (ttaparse->srcpad, gst_event_new_eos ());
   }
 }