diff options
| -rw-r--r-- | firmware/lru.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/firmware/lru.c b/firmware/lru.c index 5e1561e..5d70511 100644 --- a/firmware/lru.c +++ b/firmware/lru.c @@ -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; |