git: c2e561a38f73 - main - tail: Fix misleading indentation in ARG() macro.

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Mon, 03 Oct 2022 23:11:19 UTC
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;						\