diff options
author | Denis Vlasenko | 2007-07-21 15:08:09 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-07-21 15:08:09 +0000 |
commit | b71c668c577f7780362f7ea632895c11e3760d66 (patch) | |
tree | 860ccf38cce8c5347ae2b714a22b82a1d7dba323 /util-linux/fdisk_sun.c | |
parent | 82bd9ee64546c4f6f60303f6356377ce6b695a06 (diff) | |
download | busybox-b71c668c577f7780362f7ea632895c11e3760d66.zip busybox-b71c668c577f7780362f7ea632895c11e3760d66.tar.gz |
style fix (stray space before ';')
Diffstat (limited to 'util-linux/fdisk_sun.c')
-rw-r--r-- | util-linux/fdisk_sun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fdisk_sun.c b/util-linux/fdisk_sun.c index d4614fd..274b103 100644 --- a/util-linux/fdisk_sun.c +++ b/util-linux/fdisk_sun.c @@ -647,7 +647,7 @@ sun_list_table(int xtra) printf("%*s Flag Start End Blocks Id System\n", w + 1, "Device"); - for (i = 0 ; i < partitions; i++) { + for (i = 0; i < partitions; i++) { if (sunlabel->partitions[i].num_sectors) { uint32_t start = SUN_SSWAP32(sunlabel->partitions[i].start_cylinder) * heads * sectors; uint32_t len = SUN_SSWAP32(sunlabel->partitions[i].num_sectors); |