[Mplayer-cvslog] CVS: main subreader.c,1.32,1.33
Adam Tla/lka
atlka at mplayer.dev.hu
Thu Oct 25 15:46:18 CEST 2001
Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv3493
Modified Files:
subreader.c
Log Message:
remowing warning message
Index: subreader.c
===================================================================
RCS file: /cvsroot/mplayer/main/subreader.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- subreader.c 24 Oct 2001 13:57:46 -0000 1.32
+++ subreader.c 25 Oct 2001 13:46:14 -0000 1.33
@@ -435,14 +435,14 @@
if (!fgets (line, 1000, fd))
return NULL;
- sub_readtext(&line,¤t->text[0]);
+ sub_readtext((char *) &line,¤t->text[0]);
current->lines = 1;
current->end = current->start; // will be corrected by next subtitle
if (!fgets (line, 1000, fd))
return current;;
- sub_readtext(&line,¤t->text[1]);
+ sub_readtext((char *) &line,¤t->text[1]);
current->lines = 2;
if ((current->text[0]=="") && (current->text[1]=="")) {
More information about the MPlayer-cvslog
mailing list