Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/stdlib Don't put space before close paren.



details:   https://anonhg.NetBSD.org/src/rev/047ab598c0fa
branches:  trunk
changeset: 757858:047ab598c0fa
user:      enami <enami%NetBSD.org@localhost>
date:      Wed Sep 29 00:40:17 2010 +0000

description:
Don't put space before close paren.

diffstat:

 lib/libc/stdlib/unsetenv.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 738321c7c019 -r 047ab598c0fa lib/libc/stdlib/unsetenv.c
--- a/lib/libc/stdlib/unsetenv.c        Tue Sep 28 20:14:11 2010 +0000
+++ b/lib/libc/stdlib/unsetenv.c        Wed Sep 29 00:40:17 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: unsetenv.c,v 1.7 2010/09/25 18:37:24 tron Exp $        */
+/*     $NetBSD: unsetenv.c,v 1.8 2010/09/29 00:40:17 enami Exp $       */
 
 /*
  * Copyright (c) 1987, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "from: @(#)setenv.c     8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: unsetenv.c,v 1.7 2010/09/25 18:37:24 tron Exp $");
+__RCSID("$NetBSD: unsetenv.c,v 1.8 2010/09/29 00:40:17 enami Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -72,7 +72,7 @@
                return -1;
        }
 
-       while (__findenv(name, &offset) != NULL ) { /* if set multiple times */
+       while (__findenv(name, &offset) != NULL) { /* if set multiple times */
                free(__environ_malloced[offset]);
 
                while (environ[offset] != NULL) {



Home | Main Index | Thread Index | Old Index