Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/ibcs2 wrong semicolon at EOL. notified by wiz



details:   https://anonhg.NetBSD.org/src/rev/e1cf1cd9e86d
branches:  trunk
changeset: 535000:e1cf1cd9e86d
user:      itojun <itojun%NetBSD.org@localhost>
date:      Thu Aug 08 00:15:32 2002 +0000

description:
wrong semicolon at EOL.  notified by wiz

diffstat:

 sys/compat/ibcs2/ibcs2_stat.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 1fb67ffdd940 -r e1cf1cd9e86d sys/compat/ibcs2/ibcs2_stat.c
--- a/sys/compat/ibcs2/ibcs2_stat.c     Thu Aug 08 00:12:08 2002 +0000
+++ b/sys/compat/ibcs2/ibcs2_stat.c     Thu Aug 08 00:15:32 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ibcs2_stat.c,v 1.22 2002/08/07 00:18:21 itojun Exp $   */
+/*     $NetBSD: ibcs2_stat.c,v 1.23 2002/08/08 00:15:32 itojun Exp $   */
 /*
  * Copyright (c) 1995, 1998 Scott Bartram
  * All rights reserved.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ibcs2_stat.c,v 1.22 2002/08/07 00:18:21 itojun Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ibcs2_stat.c,v 1.23 2002/08/08 00:15:32 itojun Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -89,7 +89,7 @@
 
        if (len < 0)
                return (EINVAL);
-       if (len > sizeof(ssfs));
+       if (len > sizeof(ssfs))
                len = sizeof(ssfs);
 
        memset(&ssfs, 0, sizeof ssfs);
@@ -115,7 +115,7 @@
 
        if (len < 0)
                return (EINVAL);
-       if (len > sizeof(ssvfs));
+       if (len > sizeof(ssvfs))
                len = sizeof(ssvfs);
 
        memset(&ssvfs, 0, sizeof ssvfs);



Home | Main Index | Thread Index | Old Index