summaryrefslogtreecommitdiff
path: root/src/components/utils/src/file_system.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/utils/src/file_system.cc')
-rw-r--r--src/components/utils/src/file_system.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/utils/src/file_system.cc b/src/components/utils/src/file_system.cc
index 19a6388fcf..a1e14ec9c5 100644
--- a/src/components/utils/src/file_system.cc
+++ b/src/components/utils/src/file_system.cc
@@ -65,10 +65,10 @@ uint64_t file_system::GetAvailableDiskSpace(const std::string& path) {
}
}
-int64_t file_system::FileSize(const std::string& path) {
+uint64_t file_system::FileSize(const std::string& path) {
error_code ec;
// Boost returns sizes as unsigned
- int64_t fsize = (int64_t)fs::file_size(path, ec);
+ uint64_t fsize = (uint64_t)fs::file_size(path, ec);
if (ec) {
LOG4CXX_WARN_WITH_ERRNO(logger_, "Could not get file size: " << path);