diff --git a/source/posix/system_resource_utils.c b/source/posix/system_resource_utils.c index 4084d8720..2091ee9b8 100644 --- a/source/posix/system_resource_utils.c +++ b/source/posix/system_resource_utils.c @@ -19,7 +19,7 @@ int aws_memory_usage_for_current_process(struct aws_memory_usage *mu) { #if defined(AWS_OS_APPLE) /* * For some reason Apple switched to reporting this in bytes instead of KB - * around MacOS 10.6. + * around MacOS 10.6. * Make it back to KB. Result might be slightly off due to rounding. */ mu->maxrss = usage.ru_maxrss / 1024; diff --git a/source/windows/system_resource_utils.c b/source/windows/system_resource_utils.c index 751390f28..ba3f8e637 100644 --- a/source/windows/system_resource_utils.c +++ b/source/windows/system_resource_utils.c @@ -9,7 +9,6 @@ #include - int aws_memory_usage_for_current_process(struct aws_memory_usage *mu) { AWS_PRECONDITION(mu);