aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/du.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-12-31 14:38:13 -0600
committerRob Landley <rob@landley.net>2012-12-31 14:38:13 -0600
commit090c5c607ec682e5cfc03bbc745cd1ed28d5d6ce (patch)
treeb20960158a610080d44ac64cf6da3d7eded3e9b0 /toys/posix/du.c
parentef2af2e4d6ddb25cc9b17167e9db5a49b1265abe (diff)
downloadtoybox-090c5c607ec682e5cfc03bbc745cd1ed28d5d6ce.tar.gz
Make dirtree_handle_callback() start with dirtree_ like the rest of the dirtree functions.
Diffstat (limited to 'toys/posix/du.c')
-rw-r--r--toys/posix/du.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/du.c b/toys/posix/du.c
index 6c09aec6..5dc3ee5c 100644
--- a/toys/posix/du.c
+++ b/toys/posix/du.c
@@ -206,7 +206,7 @@ void du_main(void)
struct dirtree *root = dirtree_add_node(0, path, symfollow);
if(root) {
TT.st_dev = root->st.st_dev;
- handle_callback(root, do_du); //this will recurse thru the DIR children.
+ dirtree_handle_callback(root, do_du); // recurse thru the DIR children.
}
toys.optargs++;
}