diff options
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fdisk.c | 2 | ||||
-rw-r--r-- | util-linux/getopt.c | 4 | ||||
-rw-r--r-- | util-linux/volume_id/util.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 5871a065a..4034ca555 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -1807,7 +1807,7 @@ check_consistency(const struct partition *p, int partition) printf("Partition %d has different physical/logical " "beginnings (non-Linux?):\n", partition + 1); printf(" phys=(%d, %d, %d) ", pbc, pbh, pbs); - printf("logical=(%d, %d, %d)\n",lbc, lbh, lbs); + printf("logical=(%d, %d, %d)\n", lbc, lbh, lbs); } /* Same physical / logical ending? */ diff --git a/util-linux/getopt.c b/util-linux/getopt.c index e3b4ca625..bdf5f9716 100644 --- a/util-linux/getopt.c +++ b/util-linux/getopt.c @@ -255,9 +255,9 @@ static struct option *add_long_options(struct option *long_options, char *option static void set_shell(const char *new_shell) { - if (!strcmp(new_shell,"bash") || !strcmp(new_shell,"sh")) + if (!strcmp(new_shell, "bash") || !strcmp(new_shell, "sh")) return; - if (!strcmp(new_shell,"tcsh") || !strcmp(new_shell,"csh")) + if (!strcmp(new_shell, "tcsh") || !strcmp(new_shell, "csh")) option_mask32 |= SHELL_IS_TCSH; else bb_error_msg("unknown shell '%s', assuming bash", new_shell); diff --git a/util-linux/volume_id/util.c b/util-linux/volume_id/util.c index 240b3c1e3..315d75ca6 100644 --- a/util-linux/volume_id/util.c +++ b/util-linux/volume_id/util.c @@ -165,12 +165,12 @@ set: buf[3], buf[2], buf[1], buf[0]); break; case UUID_NTFS: - sprintf(id->uuid,"%02X%02X%02X%02X%02X%02X%02X%02X", + sprintf(id->uuid, "%02X%02X%02X%02X%02X%02X%02X%02X", buf[7], buf[6], buf[5], buf[4], buf[3], buf[2], buf[1], buf[0]); break; case UUID_HFS: - sprintf(id->uuid,"%02X%02X%02X%02X%02X%02X%02X%02X", + sprintf(id->uuid, "%02X%02X%02X%02X%02X%02X%02X%02X", buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6], buf[7]); break; |