# HG changeset patch # User reimar # Date 1390668893 0 # Node ID 20cf5874f85ae3079ac9a3f0c91f60f0271777d3 # Parent cb3210c03df6bc45ef6d673d42a10a918b0b8c2d playtreeparser: Remove pointless assignment. diff -r cb3210c03df6 -r 20cf5874f85a playtreeparser.c --- 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);