aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/df.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-05-10 18:57:01 -0500
committerRob Landley <rob@landley.net>2013-05-10 18:57:01 -0500
commit078d31cb5e33b244fdcdc4285090877a084cd31a (patch)
tree6d28cbd9a2267df728e2cbd780d49f5723ae8227 /toys/posix/df.c
parent934b2d3d9a70fafbc1805b17d0cd4f4334d317a1 (diff)
downloadtoybox-078d31cb5e33b244fdcdc4285090877a084cd31a.tar.gz
Convert getmountlist() to xgetmountlist().
Diffstat (limited to 'toys/posix/df.c')
-rw-r--r--toys/posix/df.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/df.c b/toys/posix/df.c
index 957e80b2..9e8570fc 100644
--- a/toys/posix/df.c
+++ b/toys/posix/df.c
@@ -108,7 +108,7 @@ void df_main(void)
TT.units);
} else puts("Filesystem\t1K-blocks\tUsed Available Use% Mounted on");
- mtlist = getmountlist(1);
+ mtlist = xgetmountlist();
// If we have a list of filesystems on the command line, loop through them.
if (*toys.optargs) {