cp: fix indentation

No functional changes
This commit is contained in:
Baptiste Daroussin 2021-01-26 10:52:22 +01:00
parent 2be9ff2d65
commit 45b252fc91

View File

@ -235,7 +235,7 @@ copy_file(const FTSENT *entp, int dne)
do { do {
if (use_copy_file_range) { if (use_copy_file_range) {
rcount = copy_file_range(from_fd, NULL, rcount = copy_file_range(from_fd, NULL,
to_fd, NULL, SSIZE_MAX, 0); to_fd, NULL, SSIZE_MAX, 0);
if (rcount < 0 && errno == EINVAL) { if (rcount < 0 && errno == EINVAL) {
/* Prob a non-seekable FD */ /* Prob a non-seekable FD */
use_copy_file_range = 0; use_copy_file_range = 0;