diff options
-rw-r--r-- | src/tab.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -379,7 +379,7 @@ mq_tab_seek(MqTab *node, guint position) { /* Skip forward to the containing subtree. */ while (node && node->position + node->tree_size <= position) { - node->next; + node = node->next; } /* Check whether we've gone past the end of the tree. */ |