moviebrowser/player: remove unneeded (char *) casts

This commit is contained in:
Stefan Seyfried
2015-02-10 14:55:45 +01:00
committed by Jacek Jendrzej
parent b325268123
commit b90991da77
2 changed files with 2 additions and 2 deletions

View File

@@ -3907,7 +3907,7 @@ static off64_t truncate_movie(MI_MOVIE_INFO * minfo)
char spart[255];
int part = 0, tpart = 0;
bool found = 0;
char * name = (char *) minfo->file.Name.c_str();
const char *name = minfo->file.Name.c_str();
off64_t size = minfo->file.Size;
int len = minfo->length;
int seconds = minfo->bookmarks.end;