summaryrefslogtreecommitdiffstats
path: root/fdisk/fdisksgilabel.c
diff options
context:
space:
mode:
authorFrancesco Cosoleto2011-12-15 20:02:48 +0100
committerKarel Zak2011-12-16 14:04:10 +0100
commitdae488050872e2ea90d461d19d6446477ea1d421 (patch)
tree4b7d06fdc87184c8b466df9ce83c5deff794bc29 /fdisk/fdisksgilabel.c
parentfdisk: Fix bad invalid flag 0x00000 warning message (diff)
downloadkernel-qcow2-util-linux-dae488050872e2ea90d461d19d6446477ea1d421.tar.gz
kernel-qcow2-util-linux-dae488050872e2ea90d461d19d6446477ea1d421.tar.xz
kernel-qcow2-util-linux-dae488050872e2ea90d461d19d6446477ea1d421.zip
fdisk: improve some messages
Signed-off-by: Francesco Cosoleto <cosoleto@gmail.com>
Diffstat (limited to 'fdisk/fdisksgilabel.c')
-rw-r--r--fdisk/fdisksgilabel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fdisk/fdisksgilabel.c b/fdisk/fdisksgilabel.c
index b432b1344..dd3efd051 100644
--- a/fdisk/fdisksgilabel.c
+++ b/fdisk/fdisksgilabel.c
@@ -452,7 +452,7 @@ verify_sgi(int verbose)
lastblock = sgi_get_num_sectors(Index[0]);
} else {
if (verbose)
- printf(_("One Partition (#11) should cover the entire disk.\n"));
+ printf(_("Partition 11 should cover the entire disk.\n"));
if (debug>2)
printf("sysid=%d\tpartition=%d\n",
sgi_get_sysid(Index[0]), Index[0]+1);
@@ -570,7 +570,7 @@ sgi_set_partition(int i, unsigned int start, unsigned int length, int sys) {
sgilabel->partitions[i].start_sector = SSWAP32(start);
set_changed(i);
if (sgi_gaps() < 0) /* rebuild freelist */
- printf(_("Do You know, You got a partition overlap on the disk?\n"));
+ printf(_("Partition overlap on the disk.\n"));
if (length)
print_partition_size(i + 1, start, start + length, sys);
}