From: Joel Rosdahl Date: Fri, 14 Jul 2023 18:50:52 +0000 (+0200) Subject: chore: Fix grammar in comment X-Git-Tag: v4.9~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f01cabfcb366abd074f6bbb3a8d22157238caf8b;p=thirdparty%2Fccache.git chore: Fix grammar in comment --- diff --git a/src/Util.cpp b/src/Util.cpp index c5f6693bd..75afc0003 100644 --- a/src/Util.cpp +++ b/src/Util.cpp @@ -263,8 +263,8 @@ fallocate(int fd, long new_size) if (posix_fallocate_err == 0 || posix_fallocate_err != EINVAL) { return posix_fallocate_err; } - // the underlying filesystem does not support the operation so fallback to - // lseeks + // The underlying filesystem does not support the operation so fall back to + // lseek. #endif off_t saved_pos = lseek(fd, 0, SEEK_END); off_t old_size = lseek(fd, 0, SEEK_END);