svn commit: r364408 - head/stand/libsa

Toomas Soome tsoome at FreeBSD.org
Wed Aug 19 20:41:23 UTC 2020


Author: tsoome
Date: Wed Aug 19 20:41:22 2020
New Revision: 364408
URL: https://svnweb.freebsd.org/changeset/base/364408

Log:
  libsa: remove leftover whitespace
  
  Tiny cleanup, no functional changes.

Modified:
  head/stand/libsa/environment.c

Modified: head/stand/libsa/environment.c
==============================================================================
--- head/stand/libsa/environment.c	Wed Aug 19 19:55:12 2020	(r364407)
+++ head/stand/libsa/environment.c	Wed Aug 19 20:41:22 2020	(r364408)
@@ -98,7 +98,7 @@ env_setenv(const char *name, int flags, const void *va
 		ev->ev_prev = NULL;
 		ev->ev_next = NULL;
 		/* Search for the record to insert before */
-		for (last = NULL, curr = environ; curr != NULL; 
+		for (last = NULL, curr = environ; curr != NULL;
 		    last = curr, curr = curr->ev_next) {
 
 			if (strcmp(ev->ev_name, curr->ev_name) < 0) {


More information about the svn-src-all mailing list