From cd574e85c35e152287d0607ef28c96618ea4a5dc Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 24 Dec 2024 14:51:43 -0600 Subject: [PATCH] fix --- repertory/librepertory/src/file_manager/open_file.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repertory/librepertory/src/file_manager/open_file.cpp b/repertory/librepertory/src/file_manager/open_file.cpp index fc4a75f7..793e409d 100644 --- a/repertory/librepertory/src/file_manager/open_file.cpp +++ b/repertory/librepertory/src/file_manager/open_file.cpp @@ -389,7 +389,7 @@ auto open_file::native_operation( } if (new_file_size > fsi_.size) { - res = cache_size_mgr::instance().expand(new_file_size - fsi_.size, true); + res = cache_size_mgr::instance().expand(new_file_size - fsi_.size); if (res != api_error::success) { return res; }