Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Nov 2020 01:34:44 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r367265 - stable/12/bin/echo
Message-ID:  <202011020134.0A21Yi4S062855@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Mon Nov  2 01:34:43 2020
New Revision: 367265
URL: https://svnweb.freebsd.org/changeset/base/367265

Log:
  MFC r367136:
  
  Whitespace cleanup

Modified:
  stable/12/bin/echo/echo.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/bin/echo/echo.c
==============================================================================
--- stable/12/bin/echo/echo.c	Mon Nov  2 01:30:17 2020	(r367264)
+++ stable/12/bin/echo/echo.c	Mon Nov  2 01:34:43 2020	(r367265)
@@ -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?202011020134.0A21Yi4S062855>