*: 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>
This commit is contained in:
Denys Vlasenko
2010-08-12 14:14:45 +02:00
parent 7bfbbd434a
commit 7783248eaa
27 changed files with 49 additions and 44 deletions

View File

@@ -895,7 +895,7 @@ static int PRS(int argc, char **argv)
creator_os = optarg;
break;
case 'r':
param.s_rev_level = xatoi_u(optarg);
param.s_rev_level = xatoi_positive(optarg);
if (param.s_rev_level == EXT2_GOOD_OLD_REV) {
param.s_feature_incompat = 0;
param.s_feature_compat = 0;
@@ -912,11 +912,11 @@ static int PRS(int argc, char **argv)
break;
#ifdef EXT2_DYNAMIC_REV
case 'I':
inode_size = xatoi_u(optarg);
inode_size = xatoi_positive(optarg);
break;
#endif
case 'N':
num_inodes = xatoi_u(optarg);
num_inodes = xatoi_positive(optarg);
break;
case 'v':
quiet = 0;