summaryrefslogtreecommitdiffstats
path: root/subreader.c
diff options
context:
space:
mode:
authoratlka <atlka@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-25 13:46:14 +0000
committeratlka <atlka@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-25 13:46:14 +0000
commitee42dc0d10c89802ad4ea2d54554abc8ebc37e97 (patch)
tree2be610618f445c069707e8c9ecc1bb496b22f98d /subreader.c
parent545ad8c358335844ac93b0fce24ba27d3084bf4f (diff)
downloadmpv-ee42dc0d10c89802ad4ea2d54554abc8ebc37e97.tar.bz2
mpv-ee42dc0d10c89802ad4ea2d54554abc8ebc37e97.tar.xz
remowing warning message
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2469 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'subreader.c')
-rw-r--r--subreader.c4
1 files changed, 2 insertions, 2 deletions
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,&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]=="")) {