remowing warning message

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2469 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atlka 2001-10-25 13:46:14 +00:00
parent 545ad8c358
commit ee42dc0d10
1 changed files with 2 additions and 2 deletions

View File

@ -435,14 +435,14 @@ subtitle *sub_read_line_aqt(FILE *fd,subtitle *current) {
if (!fgets (line, 1000, fd))
return NULL;
sub_readtext(&line,&current->text[0]);
sub_readtext((char *) &line,&current->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,&current->text[1]);
sub_readtext((char *) &line,&current->text[1]);
current->lines = 2;
if ((current->text[0]=="") && (current->text[1]=="")) {