changeset 2468:24427e03cd66

remowing warning message
author atlka
date Thu, 25 Oct 2001 13:46:14 +0000
parents 1e0a75f83c9c
children 03abc2743ed6
files subreader.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/subreader.c	Thu Oct 25 13:32:48 2001 +0000
+++ b/subreader.c	Thu Oct 25 13:46:14 2001 +0000
@@ -435,14 +435,14 @@
     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]=="")) {