If we didn't print an open paren, no need to print a closing paren
(by backing out part of previous commit).
This commit is contained in:
parent
1d1d6b868d
commit
3fdb4d7b11
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mount.c,v 1.46 1999/11/15 19:20:58 fvdl Exp $ */
|
||||
/* $NetBSD: mount.c,v 1.47 1999/11/16 11:53:17 enami Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1980, 1989, 1993, 1994
|
||||
|
@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1989, 1993, 1994\n\
|
|||
#if 0
|
||||
static char sccsid[] = "@(#)mount.c 8.25 (Berkeley) 5/8/95";
|
||||
#else
|
||||
__RCSID("$NetBSD: mount.c,v 1.46 1999/11/15 19:20:58 fvdl Exp $");
|
||||
__RCSID("$NetBSD: mount.c,v 1.47 1999/11/16 11:53:17 enami Exp $");
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
|
@ -484,7 +484,7 @@ prmount(sfp)
|
|||
(void)printf("%swrites: sync %ld async %ld)\n",
|
||||
!f++ ? " (" : ", ", sfp->f_syncwrites, sfp->f_asyncwrites);
|
||||
else
|
||||
(void)printf(")\n");
|
||||
(void)printf(f ? ")\n" : "\n");
|
||||
}
|
||||
|
||||
struct statfs *
|
||||
|
|
Loading…
Reference in New Issue