From: Tim Kientzle Date: Mon, 31 May 2010 18:48:59 +0000 (-0400) Subject: I think I've now removed every off_t from the format handlers. X-Git-Tag: v3.0.0a~985 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e84527bd717961761e6025171ef49d4db1a97027;p=thirdparty%2Flibarchive.git I think I've now removed every off_t from the format handlers. SVN-Revision: 2436 --- diff --git a/libarchive/archive_read_support_format_iso9660.c b/libarchive/archive_read_support_format_iso9660.c index 84bdbb22e..00944aede 100644 --- a/libarchive/archive_read_support_format_iso9660.c +++ b/libarchive/archive_read_support_format_iso9660.c @@ -348,7 +348,7 @@ struct iso9660 { uint32_t size; } primary, joliet; - off_t entry_sparse_offset; + int64_t entry_sparse_offset; int64_t entry_bytes_remaining; struct zisofs entry_zisofs; struct content *entry_content; diff --git a/libarchive/archive_write_add_filter_compress.c b/libarchive/archive_write_add_filter_compress.c index 0ae98ea5a..25a08a8d1 100644 --- a/libarchive/archive_write_add_filter_compress.c +++ b/libarchive/archive_write_add_filter_compress.c @@ -88,7 +88,7 @@ __FBSDID("$FreeBSD: head/lib/libarchive/archive_write_set_compression_compress.c #define CLEAR 256 /* Table clear output code. */ struct private_data { - off_t in_count, out_count, checkpoint; + int64_t in_count, out_count, checkpoint; int code_len; /* Number of bits/code. */ int cur_maxcode; /* Maximum code, given n_bits. */