From ee42dc0d10c89802ad4ea2d54554abc8ebc37e97 Mon Sep 17 00:00:00 2001 From: atlka Date: Thu, 25 Oct 2001 13:46:14 +0000 Subject: remowing warning message git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2469 b3059339-0415-0410-9bf9-f77b7e298cf2 --- subreader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'subreader.c') diff --git a/subreader.c b/subreader.c index de2af2deaf..23c524b473 100644 --- a/subreader.c +++ b/subreader.c @@ -435,14 +435,14 @@ subtitle *sub_read_line_aqt(FILE *fd,subtitle *current) { 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]=="")) { -- cgit v1.2.3