Mercurial > mplayer.hg
changeset 33278:679b4e6d506c
Remove unused variable.
author | reimar |
---|---|
date | Wed, 04 May 2011 20:28:54 +0000 |
parents | 16dcb1b753eb |
children | af44c90c8473 |
files | playtree.c |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/playtree.c Wed May 04 20:27:38 2011 +0000 +++ b/playtree.c Wed May 04 20:28:54 2011 +0000 @@ -281,7 +281,6 @@ void play_tree_add_file(play_tree_t* pt,char* file) { int n = 0; - char* e; #ifdef MP_DEBUG assert(pt != NULL); @@ -303,7 +302,7 @@ return; } - e = pt->files[n] = strdup(file); + pt->files[n] = strdup(file); pt->files[n+1] = NULL; pt->entry_type = PLAY_TREE_ENTRY_FILE;