diff options
author | Denys Vlasenko | 2021-08-16 11:13:30 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-08-16 11:13:30 +0200 |
commit | 9ba502456f92160af4caebe06b96077f2021b3ac (patch) | |
tree | 728188acc58271984305da2ecfe24ba5ef845e77 /util-linux/fdisk_sun.c | |
parent | 59243a86d97b793bd4e2c98911fd3a7e41af34c4 (diff) | |
download | busybox-9ba502456f92160af4caebe06b96077f2021b3ac.zip busybox-9ba502456f92160af4caebe06b96077f2021b3ac.tar.gz |
fdisk: indentation fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/fdisk_sun.c')
-rw-r--r-- | util-linux/fdisk_sun.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/fdisk_sun.c b/util-linux/fdisk_sun.c index 427b948..66e4348 100644 --- a/util-linux/fdisk_sun.c +++ b/util-linux/fdisk_sun.c @@ -292,10 +292,10 @@ create_sunlabel(void) } else { g_heads = read_int(1, g_heads, 1024, 0, "Heads"); g_sectors = read_int(1, g_sectors, 1024, 0, "Sectors/track"); - if (g_cylinders) - g_cylinders = read_int(1, g_cylinders - 2, 65535, 0, "Cylinders"); - else - g_cylinders = read_int(1, 0, 65535, 0, "Cylinders"); + if (g_cylinders) + g_cylinders = read_int(1, g_cylinders - 2, 65535, 0, "Cylinders"); + else + g_cylinders = read_int(1, 0, 65535, 0, "Cylinders"); sunlabel->nacyl = SUN_SSWAP16(read_int(0, 2, 65535, 0, "Alternate cylinders")); sunlabel->pcylcount = SUN_SSWAP16(read_int(0, g_cylinders + SUN_SSWAP16(sunlabel->nacyl), 65535, 0, "Physical cylinders")); sunlabel->rspeed = SUN_SSWAP16(read_int(1, 5400, 100000, 0, "Rotation speed (rpm)")); |