From 1550938ce1a081c4edc058b55ee34b320b849299 Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Sat, 15 Apr 2017 14:33:50 -0400 Subject: graph.h: rename childptr -> iterator Signed-off-by: Andrew Gregory --- lib/libalpm/deps.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/libalpm/deps.c') diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c index e5527d6c..6f05f0d0 100644 --- a/lib/libalpm/deps.c +++ b/lib/libalpm/deps.c @@ -152,7 +152,7 @@ static alpm_list_t *dep_graph_init(alpm_handle_t *handle, j = next; } - vertex_i->childptr = vertex_i->children; + vertex_i->iterator = vertex_i->children; } alpm_list_free(localpkgs); return vertices; @@ -196,9 +196,9 @@ alpm_list_t *_alpm_sortbydeps(alpm_handle_t *handle, /* mark that we touched the vertex */ vertex->state = ALPM_GRAPH_STATE_PROCESSING; int found = 0; - while(vertex->childptr && !found) { - alpm_graph_t *nextchild = vertex->childptr->data; - vertex->childptr = vertex->childptr->next; + while(vertex->iterator && !found) { + alpm_graph_t *nextchild = vertex->iterator->data; + vertex->iterator = vertex->iterator->next; if(nextchild->state == ALPM_GRAPH_STATE_UNPROCESSED) { found = 1; nextchild->parent = vertex; -- cgit v1.2.3-24-g4f1b