From e9ec03f769a4b4c94065896b8071537303751ce6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 7 Oct 2023 12:29:04 +0200 Subject: [PATCH] PlaylistFile: use uint_least64_t --- src/fs/FileInfo.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs/FileInfo.hxx b/src/fs/FileInfo.hxx index 0ab7a0d70..d82a58208 100644 --- a/src/fs/FileInfo.hxx +++ b/src/fs/FileInfo.hxx @@ -47,7 +47,7 @@ public: #endif } - constexpr uint64_t GetSize() const noexcept { + constexpr uint_least64_t GetSize() const noexcept { #ifdef _WIN32 return ConstructUint64(data.nFileSizeLow, data.nFileSizeHigh); #else