diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-10-26 13:01:20 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-10-26 13:01:20 +0000 |
commit | 4ec81260c57e6181cdad054a2c442a584c165ee2 (patch) | |
tree | 91cc892be98103259afb30344d33359f300a59ee /gst/tta | |
parent | 6510eef093ab1598b9c50c2b7e0c209fb2752742 (diff) | |
download | gstreamer-plugins-bad-4ec81260c57e6181cdad054a2c442a584c165ee2.tar.gz |
don't put crap in user-visible strings
Original commit message from CVS:
don't put crap in user-visible strings
Diffstat (limited to 'gst/tta')
-rw-r--r-- | gst/tta/gstttaparse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gst/tta/gstttaparse.c b/gst/tta/gstttaparse.c index 9aea2e718..cb37ea0b5 100644 --- a/gst/tta/gstttaparse.c +++ b/gst/tta/gstttaparse.c @@ -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 ()); } } |