diff options
author | Rob Landley <rob@landley.net> | 2014-03-16 16:27:38 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-03-16 16:27:38 -0500 |
commit | 817d97ba626f86c376cb8311c099ea5f010205d5 (patch) | |
tree | ea31bdb3488c6dbb46484b6c7b34f54214f1d3bf /toys | |
parent | 9ea9911b20ed353ead9170366c44138489c2889c (diff) | |
download | toybox-817d97ba626f86c376cb8311c099ea5f010205d5.tar.gz |
Clarify an unclear comment pointed out by Steve Long.
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 ed41a4ee..7fab4281 100644 --- a/toys/posix/df.c +++ b/toys/posix/df.c @@ -122,7 +122,7 @@ void df_main(void) } // Find and display this filesystem. Use _last_ hit in case of - // -- bind mounts. + // overmounts (which is first hit in the reversed list). mt2 = NULL; for (mt = mtlist; mt; mt = mt->next) { if (st.st_dev == mt->stat.st_dev) { |