git: 5b59888c3d0d - stable/13 - seq: fix style nits

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Mon, 26 Jun 2023 16:30:41 UTC
The branch stable/13 has been updated by emaste:

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

commit 5b59888c3d0dab25d672a0c2e8eba3ba938ff2f7
Author:     Mariusz Zaborski <oshogbo@FreeBSD.org>
AuthorDate: 2022-09-30 17:38:34 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-06-26 16:30:31 +0000

    seq: fix style nits
    
    MFC after:      2 weeks
    
    (cherry picked from commit 6da5e5d649ba255d41318daccc24e7af6984e0b1)
---
 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 */