diff options
| author | zousar <[email protected]> | 2023-08-18 12:21:23 -0600 |
|---|---|---|
| committer | zousar <[email protected]> | 2023-08-18 12:21:23 -0600 |
| commit | 82a00918aeaacf518b2ce6f68b2138d9efabaed8 (patch) | |
| tree | a13709fe5898bc64cfc25b0dcad6de7d0b0a5bdf /src/zencore/filesystem.cpp | |
| parent | Reduce log level for RLIMIT message (diff) | |
| download | zen-82a00918aeaacf518b2ce6f68b2138d9efabaed8.tar.xz zen-82a00918aeaacf518b2ce6f68b2138d9efabaed8.zip | |
Run clang tidy on modified file
Diffstat (limited to 'src/zencore/filesystem.cpp')
| -rw-r--r-- | src/zencore/filesystem.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/zencore/filesystem.cpp b/src/zencore/filesystem.cpp index b2ae330c1..daf668290 100644 --- a/src/zencore/filesystem.cpp +++ b/src/zencore/filesystem.cpp @@ -1138,10 +1138,10 @@ MaximizeOpenFileCount() struct rlimit NewLimit = Limit; NewLimit.rlim_cur = NewLimit.rlim_max; ZEN_DEBUG("changing RLIMIT_NOFILE from rlim_cur = {}, rlim_max {} to rlim_cur = {}, rlim_max {}", - Limit.rlim_cur, - Limit.rlim_max, - NewLimit.rlim_cur, - NewLimit.rlim_max); + Limit.rlim_cur, + Limit.rlim_max, + NewLimit.rlim_cur, + NewLimit.rlim_max); Error = setrlimit(RLIMIT_NOFILE, &NewLimit); if (Error != 0) |