summaryrefslogtreecommitdiff
path: root/src/apk_package.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/apk_package.h')
-rw-r--r--src/apk_package.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/apk_package.h b/src/apk_package.h
index 6c6c1bf..51d251b 100644
--- a/src/apk_package.h
+++ b/src/apk_package.h
@@ -80,7 +80,10 @@ struct apk_installed_package {
struct apk_package {
apk_hash_node hash_node;
- unsigned int topology_sort;
+ union {
+ int state_int;
+ void *state_ptr;
+ };
struct apk_name *name;
struct apk_installed_package *ipkg;
apk_blob_t *version, *arch, *license;