Skip to content

Commit

Permalink
Fix typo on Mac OS in last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
ned14 committed Sep 8, 2021
1 parent afbac28 commit da688a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/llfio/v2.0/detail/impl/posix/utils.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ namespace utils
kern_return_t error;
mach_msg_type_number_t outCount;
process_memory_usage ret;
if(!!(wanted & process_memory_usage::want::this_process))
if(!!(want & process_memory_usage::want::this_process))
{
task_vm_info_data_t vmInfo;
// task_kernelmemory_info_data_t kmInfo;
Expand All @@ -560,7 +560,7 @@ namespace utils
ret.private_committed = vmInfo.internal + vmInfo.compressed;
ret.private_paged_in = vmInfo.phys_footprint;
}
if(!!(wanted & process_memory_usage::want::this_system))
if(!!(want & process_memory_usage::want::this_system))
{
vm_statistics_data_t vmStat;
outCount = HOST_VM_INFO_COUNT;
Expand Down

0 comments on commit da688a1

Please sign in to comment.