summaryrefslogtreecommitdiff
path: root/src/utils/archive/archive_ops.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/archive/archive_ops.cpp')
-rw-r--r--src/utils/archive/archive_ops.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/archive/archive_ops.cpp b/src/utils/archive/archive_ops.cpp
index d8363b76..59b1d8a0 100644
--- a/src/utils/archive/archive_ops.cpp
+++ b/src/utils/archive/archive_ops.cpp
@@ -27,7 +27,7 @@ extern "C" {
namespace {
/// \brief Default block size for archive extraction.
-constexpr size_t kArchiveBlockSize = 10240;
+constexpr std::size_t kArchiveBlockSize = 10240;
/// \brief Clean-up function for archive entry objects.
void archive_entry_cleanup(archive_entry* entry) {
@@ -120,7 +120,7 @@ auto ArchiveOps::CopyData(archive* ar, archive* aw)
#ifndef BOOTSTRAP_BUILD_TOOL
int r{};
const void* buff{nullptr};
- size_t size{};
+ std::size_t size{};
la_int64_t offset{};
while (true) {