Module Name:    src
Committed By:   rillig
Date:           Fri Feb 11 21:36:46 UTC 2022

Modified Files:
        src/lib/libc/stdlib: getenv.c

Log Message:
libc/getenv: remove trailing whitespace

No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/lib/libc/stdlib/getenv.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/stdlib/getenv.c
diff -u src/lib/libc/stdlib/getenv.c:1.36 src/lib/libc/stdlib/getenv.c:1.37
--- src/lib/libc/stdlib/getenv.c:1.36	Tue Jan 20 18:31:25 2015
+++ src/lib/libc/stdlib/getenv.c	Fri Feb 11 21:36:46 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: getenv.c,v 1.36 2015/01/20 18:31:25 christos Exp $	*/
+/*	$NetBSD: getenv.c,v 1.37 2022/02/11 21:36:46 rillig Exp $	*/
 
 /*
  * Copyright (c) 1987, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)getenv.c	8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: getenv.c,v 1.36 2015/01/20 18:31:25 christos Exp $");
+__RCSID("$NetBSD: getenv.c,v 1.37 2022/02/11 21:36:46 rillig Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -73,7 +73,7 @@ getenv(const char *name)
 		result = __findenvvar(name, l_name);
 		(void)__unlockenv();
 	}
-	
+
 	return result;
 }
 
@@ -107,6 +107,6 @@ getenv_r(const char *name, char *buf, si
 		}
 		(void)__unlockenv();
 	}
-	
+
 	return rv;
 }

Reply via email to