From 8bb344f4bf2ef5d90bc02221d8411db603c11416 Mon Sep 17 00:00:00 2001 From: Jeff Mahoney Date: Mon, 20 Nov 2017 13:54:02 -0600 Subject: [PATCH] xfs_io: stat: fix typo in statfs->f_flags The field name is f_flags. Fixes: b4056fed "xfs_io: Print filesystem statfs flags in 'statfs' command" Signed-off-by: Jeff Mahoney Reviewed-by: Eric Sandeen Signed-off-by: Eric Sandeen --- io/stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/stat.c b/io/stat.c index b97ccedc4..ffe285c45 100644 --- a/io/stat.c +++ b/io/stat.c @@ -199,7 +199,7 @@ statfs_f( printf(_("statfs.f_bavail = %lld\n"), (long long) st.f_bavail); printf(_("statfs.f_files = %lld\n"), (long long) st.f_files); printf(_("statfs.f_ffree = %lld\n"), (long long) st.f_ffree); - printf(_("statfs.f_fflags = 0x%llx\n"), (long long) st.f_flags); + printf(_("statfs.f_flags = 0x%llx\n"), (long long) st.f_flags); } if (file->flags & IO_FOREIGN) return 0; -- 2.47.2