1
0
Fork 0
forked from len0rd/rockbox

Missed line in r30818

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30819 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Fred Bauer 2011-10-21 20:32:18 +00:00
parent 6f078c428f
commit ef56fa6516

View file

@ -93,7 +93,6 @@ void lru_touch(struct lru* pl, short handle)
/* insert current node at tail */
struct lru_node* tail_node = lru_node_p(pl, pl->_tail);
short tail_node_next_handle = tail_node->_next; /* Bug fix */
curr_node->_next = tail_node->_next;
tail_node->_next = handle;