summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormpf <mpf@openbsd.org>2010-05-06 06:53:09 +0000
committermpf <mpf@openbsd.org>2010-05-06 06:53:09 +0000
commitae3f9394dfbd0a359ee976f88f4bfac211b88212 (patch)
treee690a858fd1b8a2dccefc2bdd08fe0f3b49ad753
parentallow volumes of uninitialized slots to be set (diff)
downloadwireguard-openbsd-ae3f9394dfbd0a359ee976f88f4bfac211b88212.tar.xz
wireguard-openbsd-ae3f9394dfbd0a359ee976f88f4bfac211b88212.zip
Fix favail format string.
From mickey. OK thib, otto.
-rw-r--r--sys/kern/vfs_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index 9e804880ad0..48d9b452e44 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_subr.c,v 1.184 2009/12/17 16:44:12 oga Exp $ */
+/* $OpenBSD: vfs_subr.c,v 1.185 2010/05/06 06:53:09 mpf Exp $ */
/* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */
/*
@@ -2243,7 +2243,7 @@ vfs_mount_print(struct mount *mp, int full, int (*pr)(const char *, ...))
mp->mnt_stat.f_bsize, mp->mnt_stat.f_iosize, mp->mnt_stat.f_blocks,
mp->mnt_stat.f_bfree, mp->mnt_stat.f_bavail);
- (*pr)(" files %llu ffiles %llu favail $lld\n", mp->mnt_stat.f_files,
+ (*pr)(" files %llu ffiles %llu favail %lld\n", mp->mnt_stat.f_files,
mp->mnt_stat.f_ffree, mp->mnt_stat.f_favail);
(*pr)(" f_fsidx {0x%x, 0x%x} owner %u ctime 0x%x\n",