Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Oct 2022 23:11:19 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: c2e561a38f73 - main - tail: Fix misleading indentation in ARG() macro.
Message-ID:  <202210032311.293NBJb5065544@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb:

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

commit c2e561a38f739a4801d652f4b662cdc1903244f0
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2022-10-03 23:10:42 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2022-10-03 23:10:42 +0000

    tail: Fix misleading indentation in ARG() macro.
    
    Reviewed by:    imp, emaste
    Reported by:    GCC
    Differential Revision:  https://reviews.freebsd.org/D36810
---
 usr.bin/tail/tail.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.bin/tail/tail.c b/usr.bin/tail/tail.c
index 9d81a14cc7d0..e0266515d749 100644
--- a/usr.bin/tail/tail.c
+++ b/usr.bin/tail/tail.c
@@ -118,7 +118,7 @@ main(int argc, char *argv[])
 	case '+':							\
 		if (off)						\
 			off -= (units);					\
-			style = (forward);				\
+		style = (forward);					\
 		break;							\
 	case '-':							\
 		off = -off;						\



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