chiark / gitweb /
Prep v232.2: Mask more unneeded functions
[elogind.git] / src / basic / copy.c
index 66279cf920262eca95a377f1ebab92b618672b17..4e5f392fe59fdc8b7a74bbdb84ea482a117f916d 100644 (file)
@@ -170,7 +170,7 @@ int copy_bytes(int fdf, int fdt, uint64_t max_bytes, bool try_reflink) {
                 /* sendfile accepts at most SSIZE_MAX-offset bytes to copy,
                  * so reduce our maximum by the amount we already copied,
                  * but don't go below our copy buffer size, unless we are
-                 * close the the limit of bytes we are allowed to copy. */
+                 * close the limit of bytes we are allowed to copy. */
                 m = MAX(MIN(COPY_BUFFER_SIZE, max_bytes), m - n);
         }