summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libopkg/opkg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/opkg.c b/libopkg/opkg.c
index 705156a..be38d4f 100644
--- a/libopkg/opkg.c
+++ b/libopkg/opkg.c
@@ -760,7 +760,7 @@ opkg_list_upgradable_packages(opkg_package_callback_t callback, void *user_data)
head = prepare_upgrade_list();
for (node = active_list_next(head, head); node;
- active_list_next(head, node)) {
+ node = active_list_next(head, node)) {
old = list_entry(node, pkg_t, list);
new = pkg_hash_fetch_best_installation_candidate_by_name(old->name);
if (new == NULL)