Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 May 2021 08:38:16 GMT
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: a3b7f912600b - stable/13 - cp: fix indentation
Message-ID:  <202105050838.1458cGZG043595@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by bapt:

URL: https://cgit.FreeBSD.org/src/commit/?id=a3b7f912600b62ebd1740b44c96a9d8fa35b8ca6

commit a3b7f912600b62ebd1740b44c96a9d8fa35b8ca6
Author:     Baptiste Daroussin <bapt@FreeBSD.org>
AuthorDate: 2021-01-26 09:52:22 +0000
Commit:     Baptiste Daroussin <bapt@FreeBSD.org>
CommitDate: 2021-05-05 08:35:02 +0000

    cp: fix indentation
    
    No functional changes
    
    (cherry picked from commit 45b252fc9182b96342b8a598f271e49c20cbfe40)
---
 bin/cp/utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/cp/utils.c b/bin/cp/utils.c
index 7742b0d0a516..e7ae0c9dd733 100644
--- a/bin/cp/utils.c
+++ b/bin/cp/utils.c
@@ -235,7 +235,7 @@ copy_file(const FTSENT *entp, int dne)
 			do {
 				if (use_copy_file_range) {
 					rcount = copy_file_range(from_fd, NULL,
-			    		    to_fd, NULL, SSIZE_MAX, 0);
+					    to_fd, NULL, SSIZE_MAX, 0);
 					if (rcount < 0 && errno == EINVAL) {
 						/* Prob a non-seekable FD */
 						use_copy_file_range = 0;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105050838.1458cGZG043595>