index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2017-04-15 14:33:50 -0400 |
---|---|---|
committer | Andrew Gregory <andrew.gregory.8@gmail.com> | 2017-04-16 08:29:54 -0400 |
commit | 1550938ce1a081c4edc058b55ee34b320b849299 (patch) | |
tree | 7f897805322cbb2262d85475d154e7b2fb7d8ef3 /lib/libalpm/graph.h | |
parent | 9c763a0d1ba8aa56b1ff54cd8d137c6b73e19f11 (diff) |
-rw-r--r-- | lib/libalpm/graph.h | 2 |
diff --git a/lib/libalpm/graph.h b/lib/libalpm/graph.h index 233862b9..75cec937 100644 --- a/lib/libalpm/graph.h +++ b/lib/libalpm/graph.h @@ -33,7 +33,7 @@ typedef struct __alpm_graph_t { void *data; struct __alpm_graph_t *parent; /* where did we come from? */ alpm_list_t *children; - alpm_list_t *childptr; /* points to a child in children list */ + alpm_list_t *iterator; /* used for DFS without recursion */ off_t weight; /* weight of the node */ enum __alpm_graph_vertex_state state; } alpm_graph_t; |