diff options
author | dt <dt@FreeBSD.org> | 1998-05-17 21:57:17 +0000 |
---|---|---|
committer | dt <dt@FreeBSD.org> | 1998-05-17 21:57:17 +0000 |
commit | 902ca8e68b9388df5776d79f4fe4a9f26c7c8577 (patch) | |
tree | 1d795e60b15d6a4e4975439f78041dc4fe1d32dc /sbin/mount | |
parent | 2af99a3a7a1b1d6790eabe9a945b073cc68238a0 (diff) | |
download | FreeBSD-src-902ca8e68b9388df5776d79f4fe4a9f26c7c8577.zip FreeBSD-src-902ca8e68b9388df5776d79f4fe4a9f26c7c8577.tar.gz |
Remove extraneous ")" from output.
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 00fc842..3ac616c 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)mount.c 8.25 (Berkeley) 5/8/95"; #else static const char rcsid[] = - "$Id: mount.c,v 1.24 1998/03/27 10:52:13 peter Exp $"; + "$Id: mount.c,v 1.25 1998/04/08 18:31:18 wosch Exp $"; #endif #endif /* not lint */ @@ -499,7 +499,7 @@ prmount(sfp) } if ((sfp->f_syncwrites != 0 || sfp->f_asyncwrites != 0) && (sfp->f_flags & MNT_RDONLY) == 0) - (void)printf("%swrites: sync %d async %d)", + (void)printf("%swrites: sync %d async %d", !f++ ? " (" : ", ", sfp->f_syncwrites, sfp->f_asyncwrites); (void)printf("%s\n", f ? ")" : ""); } |