summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ustar.c2
-rw-r--r--src/ustar.h2
2 files changed, 2 insertions, 2 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];
};
diff --git a/src/ustar.h b/src/ustar.h
index d526239..388011c 100644
--- a/src/ustar.h
+++ b/src/ustar.h
@@ -31,7 +31,7 @@ struct opkg_opk_ustar;
struct opkg_opk_ustar_member {
char name[OPKG_OPK_USTAR_NAME_MAX_LEN];
uint16_t mode;
- int64_t size;
+ uint64_t size;
int64_t mtime;
char type;
char linkname[100];