From a45601fda332ac2d1ceb1ca636ad45c14b3be8ff Mon Sep 17 00:00:00 2001 From: Dmitriy Musatkin Date: Fri, 20 Oct 2023 16:28:17 -0700 Subject: [PATCH] lint --- source/posix/system_resource_utils.c | 2 +- source/windows/system_resource_utils.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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);