Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Oct 2020 14:44:10 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r367136 - head/bin/echo
Message-ID:  <202010291444.09TEiATK099942@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Thu Oct 29 14:44:09 2020
New Revision: 367136
URL: https://svnweb.freebsd.org/changeset/base/367136

Log:
  Whitespace cleanup
  
  MFC after:	3 days

Modified:
  head/bin/echo/echo.c

Modified: head/bin/echo/echo.c
==============================================================================
--- head/bin/echo/echo.c	Thu Oct 29 14:42:51 2020	(r367135)
+++ head/bin/echo/echo.c	Thu Oct 29 14:44:09 2020	(r367136)
@@ -71,7 +71,7 @@ errexit(const char *prog, const char *reason)
 	write(STDERR_FILENO, "\n", 1);
 	exit(1);
 }
-	
+
 int
 main(int argc, char *argv[])
 {
@@ -100,13 +100,12 @@ main(int argc, char *argv[])
 
 	while (argv[0] != NULL) {
 		size_t len;
-		
+
 		len = strlen(argv[0]);
 
 		/*
-		 * If the next argument is NULL then this is
-		 * the last argument, therefore we need to check
-		 * for a trailing \c.
+		 * If the next argument is NULL then this is the last argument,
+		 * therefore we need to check for a trailing \c.
 		 */
 		if (argv[1] == NULL) {
 			/* is there room for a '\c' and is there one? */



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