index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Rikard Falkeborn <rikard.falkeborn@gmail.com> | 2015-12-31 14:19:29 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2016-01-04 13:59:19 +1000 |
commit | 875c017e4d74bd29bc7424c2c7ff2050f90b7767 (patch) | |
tree | 2688a1d1b9ae6a3390bfd4f6f4b7343a755f27c6 /lib/libalpm/graph.h | |
parent | 2a0d188d6b289025bee18c9d9b615e0a9e19fc50 (diff) |
-rw-r--r-- | lib/libalpm/graph.h | 2 |
diff --git a/lib/libalpm/graph.h b/lib/libalpm/graph.h index fb27ea87..76a268a5 100644 --- a/lib/libalpm/graph.h +++ b/lib/libalpm/graph.h @@ -29,7 +29,7 @@ typedef struct __alpm_graph_t { alpm_list_t *children; alpm_list_t *childptr; /* points to a child in children list */ off_t weight; /* weight of the node */ - char state; /* 0: untouched, -1: entered, other: leaving time */ + signed char state; /* 0: untouched, -1: entered, other: leaving time */ } alpm_graph_t; alpm_graph_t *_alpm_graph_new(void); |