[parted-devel] [PATCH] Fix inconsistent prompt for file system type.
Jim Meyering
jim at meyering.net
Mon Jun 11 11:19:51 UTC 2007
Barely worth posting about, but...
* parted/parted.c (do_mkfs): Use a consistent prompt when asking
for a file system type.
Signed-off-by: Jim Meyering <jim at meyering.net>
---
parted/parted.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/parted/parted.c b/parted/parted.c
index 92e820d..8f15ce9 100644
--- a/parted/parted.c
+++ b/parted/parted.c
@@ -653,7 +653,7 @@ do_mkfs (PedDevice** dev)
goto error_destroy_disk;
if (!_partition_warn_busy (part))
goto error_destroy_disk;
- if (!command_line_get_fs_type (_("File system?"), &type))
+ if (!command_line_get_fs_type (_("File system type?"), &type))
goto error_destroy_disk;
fs = ped_file_system_create (&part->geom, type, g_timer);
More information about the parted-devel
mailing list