Mercurial > mplayer.hg
changeset 36628:20cf5874f85a
playtreeparser: Remove pointless assignment.
author | reimar |
---|---|
date | Sat, 25 Jan 2014 16:54:53 +0000 |
parents | cb3210c03df6 |
children | a94f5085f3a2 |
files | playtreeparser.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/playtreeparser.c Sat Jan 25 16:54:52 2014 +0000 +++ b/playtreeparser.c Sat Jan 25 16:54:53 2014 +0000 @@ -219,7 +219,7 @@ // We have an asx : load it in memory and parse - while((line = play_tree_parser_get_line(p)) != NULL) + while(play_tree_parser_get_line(p) != NULL) /* NOTHING */; mp_msg(MSGT_PLAYTREE,MSGL_DBG3,"Parsing asx file: [%s]\n",p->buffer);