From: Joel Rosdahl Date: Thu, 3 Nov 2022 19:28:18 +0000 (+0100) Subject: chore: Tweak comments X-Git-Tag: v4.7.3~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39586a81024630873a26ba60e0baeb4ab8d5daf9;p=thirdparty%2Fccache.git chore: Tweak comments --- diff --git a/doc/NEWS.adoc b/doc/NEWS.adoc index 8055c81a1..b496b7fe4 100644 --- a/doc/NEWS.adoc +++ b/doc/NEWS.adoc @@ -2948,7 +2948,7 @@ Release date: 2010-11-28 === Other -- Portability fixes for HP-UX 11.00 and other esoteric systems. +- Portability fixes for HP-UX 11.00 and other less common systems. == Ccache 3.1.2 diff --git a/src/storage/local/LocalStorage.cpp b/src/storage/local/LocalStorage.cpp index fdc48dc61..001e2a94e 100644 --- a/src/storage/local/LocalStorage.cpp +++ b/src/storage/local/LocalStorage.cpp @@ -45,9 +45,9 @@ const util::Duration k_tempdir_cleanup_interval(2 * 24 * 60 * 60); // 2 days // Maximum files per cache directory. This constant is somewhat arbitrarily // chosen to be large enough to avoid unnecessary cache levels but small enough -// not to make esoteric file systems (with bad performance for large -// directories) too slow. It could be made configurable, but hopefully there -// will be no need to do that. +// not to make it too slow for legacy file systems with bad performance for +// large directories. It could be made configurable, but hopefully there will be +// no need to do that. const uint64_t k_max_cache_files_per_directory = 2000; // Minimum number of cache levels ($CCACHE_DIR/1/2/stored_file).