summaryrefslogtreecommitdiffstats
path: root/sub_cc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sub_cc.c')
-rw-r--r--sub_cc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sub_cc.c b/sub_cc.c
index 2acebf01bc..3a420ed6d9 100644
--- a/sub_cc.c
+++ b/sub_cc.c
@@ -1,5 +1,5 @@
/*
- * sub_cc.c - Decoder for Closed Captions
+ * decoder for Closed Captions
*
* This decoder relies on MPlayer's OSD to display subtitles.
* Be warned that the decoding is somewhat preliminary, though it basically works.
@@ -130,7 +130,7 @@ static void append_char(char c)
{
if(cursor_pos==CC_MAX_LINE_LENGTH-1)
{
- fprintf(stderr,"sub_cc.c: append_char() reached CC_MAX_LINE_LENGTH!\n");
+ fprintf(stderr,"CC: append_char() reached CC_MAX_LINE_LENGTH!\n");
return;
}
bb->text[bb->lines - 1][cursor_pos++]=c;