diff options
author | Denis Vlasenko | 2006-10-08 12:49:22 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-08 12:49:22 +0000 |
commit | 1385899416a4396385ad421ae1f532be7103738a (patch) | |
tree | fc4d14a910593d1235318bb36abe5e9f72d2039e /util-linux/fdisk.c | |
parent | 5625415085e68ac5e150f54e685417c866620d76 (diff) | |
download | busybox-1385899416a4396385ad421ae1f532be7103738a.zip busybox-1385899416a4396385ad421ae1f532be7103738a.tar.gz |
attempt to regularize atoi mess.
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r-- | util-linux/fdisk.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 85acaa4..3bf78ee 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -1222,8 +1222,7 @@ edit_int(int def, char *mesg) printf(" (%d): ", def); if (!read_line()) return def; - } - while (!isdigit(*line_ptr)); /* FIXME: ?!! */ + } while (!isdigit(*line_ptr)); return atoi(line_ptr); } @@ -5664,14 +5663,14 @@ int fdisk_main(int argc, char **argv) #ifdef CONFIG_FEATURE_FDISK_BLKSIZE "s" #endif - )) != -1) { + )) != -1) { switch (c) { case 'b': /* Ugly: this sector size is really per device, so cannot be combined with multiple disks, and te same goes for the C/H/S options. */ - sector_size = atoi(optarg); + sector_size = xatoi_u(optarg); if (sector_size != 512 && sector_size != 1024 && sector_size != 2048) bb_show_usage(); @@ -5679,15 +5678,15 @@ int fdisk_main(int argc, char **argv) user_set_sector_size = 1; break; case 'C': - user_cylinders = atoi(optarg); + user_cylinders = xatoi_u(optarg); break; case 'H': - user_heads = atoi(optarg); + user_heads = xatoi_u(optarg); if (user_heads <= 0 || user_heads >= 256) user_heads = 0; break; case 'S': - user_sectors = atoi(optarg); + user_sectors = xatoi_u(optarg); if (user_sectors <= 0 || user_sectors >= 64) user_sectors = 0; break; |