Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Oct 20, 2023
1 parent 3e26295 commit a45601f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion source/posix/system_resource_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion source/windows/system_resource_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

#include <psapi.h>


int aws_memory_usage_for_current_process(struct aws_memory_usage *mu) {
AWS_PRECONDITION(mu);

Expand Down

0 comments on commit a45601f

Please sign in to comment.