From 6e5f93e5b15e6990c1e93b8ae4f3ca8d5a0d0c11 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 24 Sep 2017 22:22:28 -0400 Subject: mq_tab_seek(): Fix node iteration statement --- (limited to 'src/tab.c') diff --git a/src/tab.c b/src/tab.c index 93aae37..ba632ee 100644 --- a/src/tab.c +++ b/src/tab.c @@ -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. */ -- cgit v0.9.1