diff options
author | wollman <wollman@FreeBSD.org> | 1995-03-16 21:43:03 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-03-16 21:43:03 +0000 |
commit | 5569af19d9fda7efc2591eb45bdb2a9a5b5c40f0 (patch) | |
tree | 3b182e6c17dd553bf5d2b69575ef223ee9df4d13 /usr.bin | |
parent | b2dad10ffa929eb0224d6092c436939ae67f8e27 (diff) | |
download | FreeBSD-src-5569af19d9fda7efc2591eb45bdb2a9a5b5c40f0.zip FreeBSD-src-5569af19d9fda7efc2591eb45bdb2a9a5b5c40f0.tar.gz |
Fix bonehead formatting error.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/lsvfs/lsvfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/lsvfs/lsvfs.c b/usr.bin/lsvfs/lsvfs.c index aa2fb0c..ccfc038 100644 --- a/usr.bin/lsvfs/lsvfs.c +++ b/usr.bin/lsvfs/lsvfs.c @@ -3,7 +3,7 @@ * Garrett A. Wollman, September 1994 * This file is in the public domain. * - * $Id: lsvfs.c,v 1.3 1995/03/16 18:37:47 wollman Exp $ + * $Id: lsvfs.c,v 1.4 1995/03/16 20:29:11 wollman Exp $ */ #include <sys/types.h> @@ -44,7 +44,7 @@ main(int argc, char **argv) } else { while(vfc = getvfsent()) { printf(FMT, vfc->vfc_name, vfc->vfc_index, vfc->vfc_refcount, - vfc->vfc_flags); + fmt_flags(vfc->vfc_flags)); } } |