wrong semicolon at EOL. notified by wiz

This commit is contained in:
itojun 2002-08-08 00:15:32 +00:00
parent 2b615e62c4
commit f731d2b75a
1 changed files with 4 additions and 4 deletions

View File

@ -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 @@ cvt_statfs(sp, buf, len)
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 @@ cvt_statvfs(sp, buf, len)
if (len < 0)
return (EINVAL);
if (len > sizeof(ssvfs));
if (len > sizeof(ssvfs))
len = sizeof(ssvfs);
memset(&ssvfs, 0, sizeof ssvfs);