git: cf668c16974c - stable/13 - tail: Fix misleading indentation in ARG() macro.

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Fri, 11 Nov 2022 18:36:49 UTC
The branch stable/13 has been updated by jhb:

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

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

    tail: Fix misleading indentation in ARG() macro.
    
    Reviewed by:    imp, emaste
    Reported by:    GCC
    Differential Revision:  https://reviews.freebsd.org/D36810
    
    (cherry picked from commit c2e561a38f739a4801d652f4b662cdc1903244f0)
---
 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 2ed41586d9e9..8a65683bef7e 100644
--- a/usr.bin/tail/tail.c
+++ b/usr.bin/tail/tail.c
@@ -113,7 +113,7 @@ main(int argc, char *argv[])
 	case '+':							\
 		if (off)						\
 			off -= (units);					\
-			style = (forward);				\
+		style = (forward);					\
 		break;							\
 	case '-':							\
 		off = -off;						\