[MPlayer-cvslog] r36724 - trunk/playtreeparser.c
reimar
subversion at mplayerhq.hu
Sat Jan 25 17:54:54 CET 2014
Author: reimar
Date: Sat Jan 25 17:54:53 2014
New Revision: 36724
Log:
playtreeparser: Remove pointless assignment.
Modified:
trunk/playtreeparser.c
Modified: trunk/playtreeparser.c
==============================================================================
--- trunk/playtreeparser.c Sat Jan 25 17:54:52 2014 (r36723)
+++ trunk/playtreeparser.c Sat Jan 25 17:54:53 2014 (r36724)
@@ -219,7 +219,7 @@ parse_asx(play_tree_parser_t* p) {
// 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);
More information about the MPlayer-cvslog
mailing list