git: 6da5e5d649ba - main - seq: fix style nits

From: Mariusz Zaborski <oshogbo_at_FreeBSD.org>
Date: Sat, 01 Oct 2022 10:07:35 UTC
The branch main has been updated by oshogbo:

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

commit 6da5e5d649ba255d41318daccc24e7af6984e0b1
Author:     Mariusz Zaborski <oshogbo@FreeBSD.org>
AuthorDate: 2022-09-30 17:38:34 +0000
Commit:     Mariusz Zaborski <oshogbo@FreeBSD.org>
CommitDate: 2022-10-01 10:05:07 +0000

    seq: fix style nits
    
    MFC after:      2 weeks
---
 usr.bin/seq/seq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.bin/seq/seq.c b/usr.bin/seq/seq.c
index 47ba0b7ce3af..823e8c2c4da0 100644
--- a/usr.bin/seq/seq.c
+++ b/usr.bin/seq/seq.c
@@ -151,7 +151,7 @@ main(int argc, char *argv[])
 
 	if (argc > 1)
 		first = e_atof(argv[0]);
-	
+
 	if (argc > 2) {
 		incr = e_atof(argv[1]);
 		/* Plan 9/GNU don't do zero */