Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/config Please pay an attention to the existing code...



details:   https://anonhg.NetBSD.org/src/rev/f8eac276bd9e
branches:  trunk
changeset: 481226:f8eac276bd9e
user:      enami <enami%NetBSD.org@localhost>
date:      Tue Jan 25 01:16:00 2000 +0000

description:
Please pay an attention to the existing code and not to introduce
different coding style.

diffstat:

 usr.sbin/config/main.c |  4 ++--
 usr.sbin/config/sem.c  |  5 +++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diffs (37 lines):

diff -r cb202aba5082 -r f8eac276bd9e usr.sbin/config/main.c
--- a/usr.sbin/config/main.c    Tue Jan 25 01:15:29 2000 +0000
+++ b/usr.sbin/config/main.c    Tue Jan 25 01:16:00 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: main.c,v 1.45 2000/01/23 23:37:42 hubertf Exp $        */
+/*     $NetBSD: main.c,v 1.46 2000/01/25 01:16:00 enami Exp $  */
 
 /*
  * Copyright (c) 1992, 1993
@@ -186,7 +186,7 @@
        initintern();
        initfiles();
        initsem();
-       ident=NULL;
+       ident = NULL;
        devbasetab = ht_new();
        devatab = ht_new();
        selecttab = ht_new();
diff -r cb202aba5082 -r f8eac276bd9e usr.sbin/config/sem.c
--- a/usr.sbin/config/sem.c     Tue Jan 25 01:15:29 2000 +0000
+++ b/usr.sbin/config/sem.c     Tue Jan 25 01:16:00 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sem.c,v 1.24 2000/01/23 23:37:42 hubertf Exp $ */
+/*     $NetBSD: sem.c,v 1.25 2000/01/25 01:16:00 enami Exp $   */
 
 /*
  * Copyright (c) 1992, 1993
@@ -179,7 +179,8 @@
 setident(i)
        const char *i;
 {
-       ident=intern(i);
+
+       ident = intern(i);
 }
 
 /*



Home | Main Index | Thread Index | Old Index