Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/llfio/v2.0/detail/impl/windows/statfs.ipp')
-rw-r--r--include/llfio/v2.0/detail/impl/windows/statfs.ipp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llfio/v2.0/detail/impl/windows/statfs.ipp b/include/llfio/v2.0/detail/impl/windows/statfs.ipp
index 82ed8ba4..06e6040c 100644
--- a/include/llfio/v2.0/detail/impl/windows/statfs.ipp
+++ b/include/llfio/v2.0/detail/impl/windows/statfs.ipp
@@ -141,7 +141,7 @@ LLFIO_HEADERS_ONLY_MEMFUNC_SPEC result<size_t> statfs_t::fill(const handle &h, s
f_iosize = ffssi->PhysicalBytesPerSectorForPerformance;
++ret;
}
- if(!!(wanted & want::iosinprogress) || !!(wanted & want::ioswaittime))
+ if(!!(wanted & want::iosinprogress) || !!(wanted & want::iosbusytime))
{
if(f_mntfromname.empty())
{
@@ -247,7 +247,7 @@ LLFIO_HEADERS_ONLY_MEMFUNC_SPEC result<size_t> statfs_t::fill(const handle &h, s
break;
}
}
- if(!!(wanted & want::iosinprogress) || !!(wanted & want::ioswaittime))
+ if(!!(wanted & want::iosinprogress) || !!(wanted & want::iosbusytime))
{
OUTCOME_TRY(auto ios, _fill_ios(h, f_mntfromname));
if(!!(wanted & want::iosinprogress))
@@ -255,9 +255,9 @@ LLFIO_HEADERS_ONLY_MEMFUNC_SPEC result<size_t> statfs_t::fill(const handle &h, s
f_iosinprogress = ios.first;
++ret;
}
- if(!!(wanted & want::ioswaittime))
+ if(!!(wanted & want::iosbusytime))
{
- f_ioswaittime = ios.second;
+ f_iosbusytime = ios.second;
++ret;
}
}