]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
chore: Fix grammar in comment
authorJoel Rosdahl <joel@rosdahl.net>
Fri, 14 Jul 2023 18:50:52 +0000 (20:50 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 15 Jul 2023 19:03:53 +0000 (21:03 +0200)
src/Util.cpp

index c5f6693bd984815603b446c11edb64623d7583b1..75afc0003590bb7f814858c618deea06de686b60 100644 (file)
@@ -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);