diff options
author | Karel Zak | 2008-04-14 12:16:14 +0200 |
---|---|---|
committer | Karel Zak | 2008-04-14 12:16:14 +0200 |
commit | fe82c712867d4899b5575cd5f523c54ecd9f18cd (patch) | |
tree | 8cdf0f304463e3b32ff9496dffacceef0aa907d8 | |
parent | scriptreplay: rewrite in C (diff) | |
download | kernel-qcow2-util-linux-fe82c712867d4899b5575cd5f523c54ecd9f18cd.tar.gz kernel-qcow2-util-linux-fe82c712867d4899b5575cd5f523c54ecd9f18cd.tar.xz kernel-qcow2-util-linux-fe82c712867d4899b5575cd5f523c54ecd9f18cd.zip |
fdisk: message tweak
Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r-- | fdisk/fdisk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fdisk/fdisk.c b/fdisk/fdisk.c index ede41b3e6..58b8bbdef 100644 --- a/fdisk/fdisk.c +++ b/fdisk/fdisk.c @@ -1519,8 +1519,8 @@ change_sysid(void) { printf (_("Changed system type of partition %d " "to %x (%s)\n"), i + 1, sys, temp); else - printf (_("System type of partition %d is unchanged " - "to %x (%s)\n"), i + 1, sys, temp); + printf (_("System type of partition %d is unchanged: " + "%x (%s)\n"), i + 1, sys, temp); if (is_dos_partition(origsys) || is_dos_partition(sys)) dos_changed = 1; |