From: Karel Zak Date: Tue, 12 Mar 2013 09:58:33 +0000 (+0100) Subject: fdisk: use comma in the ask-partition-number dialog (again) X-Git-Tag: v2.23-rc1~82 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38de0706e81ca777545804d5373b281a9f038d28;p=thirdparty%2Futil-linux.git fdisk: use comma in the ask-partition-number dialog (again) Signed-off-by: Karel Zak --- diff --git a/fdisks/fdisk-ask.c b/fdisks/fdisk-ask.c index f00f4d698c..9d2f87ac3e 100644 --- a/fdisks/fdisk-ask.c +++ b/fdisks/fdisk-ask.c @@ -63,7 +63,7 @@ static int ask_number(struct fdisk_context *cxt, DBG(ASK, dbgprint("asking for number ['%s', <%jd,%jd>, default=%jd, range: %s]", q, low, high, dflt, range)); if (range && dflt >= low && dflt <= high) - snprintf(prompt, sizeof(prompt), _("%s (%s default %jd): "), q, range, dflt); + snprintf(prompt, sizeof(prompt), _("%s (%s, default %jd): "), q, range, dflt); else if (dflt >= low && dflt <= high) snprintf(prompt, sizeof(prompt), _("%s (%jd-%jd, default %jd): "), q, low, high, dflt); else @@ -112,7 +112,7 @@ static int ask_offset(struct fdisk_context *cxt, q, low, high, base, dflt, range)); if (range && dflt >= low && dflt <= high) - snprintf(prompt, sizeof(prompt), _("%s (%s default %jd): "), q, range, dflt); + snprintf(prompt, sizeof(prompt), _("%s (%s, default %jd): "), q, range, dflt); else if (dflt >= low && dflt <= high) snprintf(prompt, sizeof(prompt), _("%s (%jd-%jd, default %jd): "), q, low, high, dflt); else