diff options
author | Rob Landley <rob@landley.net> | 2013-05-10 18:57:01 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-05-10 18:57:01 -0500 |
commit | 078d31cb5e33b244fdcdc4285090877a084cd31a (patch) | |
tree | 6d28cbd9a2267df728e2cbd780d49f5723ae8227 /toys | |
parent | 934b2d3d9a70fafbc1805b17d0cd4f4334d317a1 (diff) | |
download | toybox-078d31cb5e33b244fdcdc4285090877a084cd31a.tar.gz |
Convert getmountlist() to xgetmountlist().
Diffstat (limited to 'toys')
-rw-r--r-- | toys/posix/df.c | 2 |
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) { |