diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-12 14:14:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-12 14:14:45 +0200 |
commit | 7783248eaac715b813f0635b06cc140ea99bb4d9 (patch) | |
tree | b7c3acbdf7e45afdb31a721a693f0a8a65f80730 /miscutils/makedevs.c | |
parent | 7bfbbd434a6f435b0287cd25406927c630b03f68 (diff) | |
download | busybox-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 'miscutils/makedevs.c')
-rw-r--r-- | miscutils/makedevs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c index abf505770..0578d9251 100644 --- a/miscutils/makedevs.c +++ b/miscutils/makedevs.c | |||
@@ -36,10 +36,10 @@ int makedevs_main(int argc, char **argv) | |||
36 | basedev = argv[1]; | 36 | basedev = argv[1]; |
37 | buf = xasprintf("%s%u", argv[1], (unsigned)-1); | 37 | buf = xasprintf("%s%u", argv[1], (unsigned)-1); |
38 | type = argv[2]; | 38 | type = argv[2]; |
39 | Smajor = xatoi_u(argv[3]); | 39 | Smajor = xatoi_positive(argv[3]); |
40 | Sminor = xatoi_u(argv[4]); | 40 | Sminor = xatoi_positive(argv[4]); |
41 | S = xatoi_u(argv[5]); | 41 | S = xatoi_positive(argv[5]); |
42 | E = xatoi_u(argv[6]); | 42 | E = xatoi_positive(argv[6]); |
43 | nodname = argv[7] ? basedev : buf; | 43 | nodname = argv[7] ? basedev : buf; |
44 | 44 | ||
45 | mode = 0660; | 45 | mode = 0660; |