diff options
author | Tim Kientzle <kientzle@gmail.com> | 2011-08-19 01:50:47 -0400 |
---|---|---|
committer | Tim Kientzle <kientzle@gmail.com> | 2011-08-19 01:50:47 -0400 |
commit | 890b4907bb50df3dfd3f5a1b3e31def3f19f6958 (patch) | |
tree | f71aedc5d929467085b94929b94fa30de594f9d9 | |
parent | f0c3de336d39c930c6d5386f3916fe808290d590 (diff) | |
download | libarchive-890b4907bb50df3dfd3f5a1b3e31def3f19f6958.tar.gz |
Fix build on VS2005.
SVN-Revision: 3641
-rw-r--r-- | libarchive/archive_entry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libarchive/archive_entry.h b/libarchive/archive_entry.h index d478626c..756a778c 100644 --- a/libarchive/archive_entry.h +++ b/libarchive/archive_entry.h @@ -519,7 +519,7 @@ __LA_DECL int archive_entry_xattr_next(struct archive_entry *, __LA_DECL void archive_entry_sparse_clear(struct archive_entry *); __LA_DECL void archive_entry_sparse_add_entry(struct archive_entry *, - int64_t /* offset */, int64_t /* length */); + __LA_INT64_T /* offset */, __LA_INT64_T /* length */); /* * To retrieve the xattr list, first "reset", then repeatedly ask for the @@ -529,7 +529,7 @@ __LA_DECL void archive_entry_sparse_add_entry(struct archive_entry *, __LA_DECL int archive_entry_sparse_count(struct archive_entry *); __LA_DECL int archive_entry_sparse_reset(struct archive_entry *); __LA_DECL int archive_entry_sparse_next(struct archive_entry *, - int64_t * /* offset */, int64_t * /* length */); + __LA_INT64_T * /* offset */, __LA_INT64_T * /* length */); /* * Utility to match up hardlinks. |