aboutsummaryrefslogtreecommitdiff
path: root/src/util/system.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-12-24 16:19:02 +0800
committerfanquake <fanquake@gmail.com>2022-01-26 22:08:19 +0800
commit21f781ad7921ebda9f38a6be362e23750d8cd5a6 (patch)
treea32a921d64bdf482fbbca9f14d466fbdf1d2877e /src/util/system.cpp
parente3699b71c46bf66cfe363fc76ab8761dc39555a7 (diff)
downloadbitcoin-21f781ad7921ebda9f38a6be362e23750d8cd5a6.tar.xz
fs: consistently use fsbridge for {i,o}fstream
Part of #20744, but this can be done now, and will simplify the diff.
Diffstat (limited to 'src/util/system.cpp')
-rw-r--r--src/util/system.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/system.cpp b/src/util/system.cpp
index e34cdc7fb9..19de08d1ea 100644
--- a/src/util/system.cpp
+++ b/src/util/system.cpp
@@ -146,7 +146,7 @@ bool CheckDiskSpace(const fs::path& dir, uint64_t additional_bytes)
}
std::streampos GetFileSize(const char* path, std::streamsize max) {
- std::ifstream file(path, std::ios::binary);
+ fsbridge::ifstream file{path, std::ios::binary};
file.ignore(max);
return file.gcount();
}