diff options
Diffstat (limited to 'coreutils/du.c')
-rw-r--r-- | coreutils/du.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/du.c b/coreutils/du.c index 1452e58..f61d978 100644 --- a/coreutils/du.c +++ b/coreutils/du.c @@ -215,7 +215,7 @@ int du_main(int argc, char **argv) one_file_system = opt & (1 << 5); /* -x opt */ if((opt & (1 << 6))) { /* -d opt */ - max_print_depth = bb_xgetularg10_bnd(smax_print_depth, 0, INT_MAX); + max_print_depth = xatoi_u(smax_print_depth); } if((opt & (1 << 7))) { /* -l opt */ |