summaryrefslogtreecommitdiffstats
path: root/src/ustar.c
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2023-04-18 09:00:13 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2023-04-18 09:00:13 (EDT)
commit84e30f4ee91be8f25aa5be3763f5b9a1c8aaae73 (patch)
treee0c03c97212703c2965ea49acf6c2cf08daad1de /src/ustar.c
parent60f7c693d50898cd7c60d0ff607715945d5ab0b3 (diff)
ustar: Make size unsigned
Diffstat (limited to 'src/ustar.c')
-rw-r--r--src/ustar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ustar.c b/src/ustar.c
index 7df8c43..5fdcd1e 100644
--- a/src/ustar.c
+++ b/src/ustar.c
@@ -50,7 +50,7 @@ struct _opkg_opk_ustar_header {
struct opkg_opk_ustar {
struct opkg_opk_gzip *gzip;
- int64_t data_size_remaining;
+ uint64_t data_size_remaining;
unsigned char read_record[OPKG_OPK_USTAR_RECORD_SIZE];
};