comparison playtreeparser.c @ 36628:20cf5874f85a

playtreeparser: Remove pointless assignment.
author reimar
date Sat, 25 Jan 2014 16:54:53 +0000
parents 389d43c448b3
children
comparison
equal deleted inserted replaced
36627:cb3210c03df6 36628:20cf5874f85a
217 217
218 mp_msg(MSGT_PLAYTREE,MSGL_V,"Detected asx format\n"); 218 mp_msg(MSGT_PLAYTREE,MSGL_V,"Detected asx format\n");
219 219
220 // We have an asx : load it in memory and parse 220 // We have an asx : load it in memory and parse
221 221
222 while((line = play_tree_parser_get_line(p)) != NULL) 222 while(play_tree_parser_get_line(p) != NULL)
223 /* NOTHING */; 223 /* NOTHING */;
224 224
225 mp_msg(MSGT_PLAYTREE,MSGL_DBG3,"Parsing asx file: [%s]\n",p->buffer); 225 mp_msg(MSGT_PLAYTREE,MSGL_DBG3,"Parsing asx file: [%s]\n",p->buffer);
226 return asx_parser_build_tree(p->buffer,p->deep); 226 return asx_parser_build_tree(p->buffer,p->deep);
227 } 227 }