aboutsummaryrefslogtreecommitdiff
path: root/findutils/find.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-08-12 14:14:45 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-08-12 14:14:45 +0200
commit7783248eaac715b813f0635b06cc140ea99bb4d9 (patch)
treeb7c3acbdf7e45afdb31a721a693f0a8a65f80730 /findutils/find.c
parent7bfbbd434a6f435b0287cd25406927c630b03f68 (diff)
downloadbusybox-w32-7783248eaac715b813f0635b06cc140ea99bb4d9.tar.gz
busybox-w32-7783248eaac715b813f0635b06cc140ea99bb4d9.tar.bz2
busybox-w32-7783248eaac715b813f0635b06cc140ea99bb4d9.zip
*: s/xatoi_u/xatoi_positive/g - I got bored of mistyping xatoi_u as xatou_i
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils/find.c')
-rw-r--r--findutils/find.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/find.c b/findutils/find.c
index 297081489..d4bcd6545 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -1210,7 +1210,7 @@ IF_FEATURE_FIND_MAXDEPTH(OPT_MINDEPTH,)
1210 if (opt == OPT_MINDEPTH || opt == OPT_MINDEPTH + 1) { 1210 if (opt == OPT_MINDEPTH || opt == OPT_MINDEPTH + 1) {
1211 if (!argp[1]) 1211 if (!argp[1])
1212 bb_show_usage(); 1212 bb_show_usage();
1213 minmaxdepth[opt - OPT_MINDEPTH] = xatoi_u(argp[1]); 1213 minmaxdepth[opt - OPT_MINDEPTH] = xatoi_positive(argp[1]);
1214 argp[0] = (char*)"-a"; 1214 argp[0] = (char*)"-a";
1215 argp[1] = (char*)"-a"; 1215 argp[1] = (char*)"-a";
1216 argp++; 1216 argp++;