From: Benno Schulenberg Date: Tue, 8 Oct 2013 15:18:18 +0000 (+0200) Subject: libfdisk: (gpt) use consistent final period in status messages X-Git-Tag: v2.24-rc2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6060cd3ae99e737393fa880b209528005a50099;p=thirdparty%2Futil-linux.git libfdisk: (gpt) use consistent final period in status messages Signed-off-by: Benno Schulenberg --- diff --git a/libfdisk/src/gpt.c b/libfdisk/src/gpt.c index c04b21ee26..448b1ff79b 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);