summaryrefslogtreecommitdiffstats
path: root/libfdisk
diff options
context:
space:
mode:
authorBenno Schulenberg2013-10-08 17:18:18 +0200
committerKarel Zak2013-10-09 11:40:08 +0200
commitd6060cd3ae99e737393fa880b209528005a50099 (patch)
treeb362d12f360608007c63a7816204ba4df1bd0fd9 /libfdisk
parentlibfdisk: (dos) improve the grammar of an error message (diff)
downloadkernel-qcow2-util-linux-d6060cd3ae99e737393fa880b209528005a50099.tar.gz
kernel-qcow2-util-linux-d6060cd3ae99e737393fa880b209528005a50099.tar.xz
kernel-qcow2-util-linux-d6060cd3ae99e737393fa880b209528005a50099.zip
libfdisk: (gpt) use consistent final period in status messages
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'libfdisk')
-rw-r--r--libfdisk/src/gpt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libfdisk/src/gpt.c b/libfdisk/src/gpt.c
index c04b21ee2..448b1ff79 100644
--- a/libfdisk/src/gpt.c
+++ b/libfdisk/src/gpt.c
@@ -1811,7 +1811,7 @@ static int gpt_create_disklabel(struct fdisk_context *cxt)
guid_to_string(&gpt->pheader->disk_guid, str);
fdisk_label_set_changed(cxt->label, 1);
fdisk_sinfo(cxt, FDISK_INFO_SUCCESS,
- _("Created a new GPT disklabel (GUID: %s)"), str);
+ _("Created a new GPT disklabel (GUID: %s)."), str);
done:
return rc;
}
@@ -1998,7 +1998,7 @@ int fdisk_gpt_partition_set_uuid(struct fdisk_context *cxt, size_t i)
fdisk_label_set_changed(cxt->label, 1);
fdisk_sinfo(cxt, FDISK_INFO_SUCCESS,
- _("Partition UUID changed from %s to %s"),
+ _("Partition UUID changed from %s to %s."),
old_u, new_u);
return 0;
}
@@ -2043,7 +2043,7 @@ int fdisk_gpt_partition_set_name(struct fdisk_context *cxt, size_t i)
fdisk_label_set_changed(cxt->label, 1);
fdisk_sinfo(cxt, FDISK_INFO_SUCCESS,
- _("Partition name changed from '%s' to '%.*s'"),
+ _("Partition name changed from '%s' to '%.*s'."),
old, GPT_PART_NAME_LEN, str);
free(str);
free(old);