From: NeilBrown Date: Wed, 24 Jul 2013 02:22:58 +0000 (+1000) Subject: super0/1: fix typo in error messages. X-Git-Tag: mdadm-3.3-rc2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bf62891c10903df323da49d601a88adebec7ee2;p=thirdparty%2Fmdadm.git super0/1: fix typo in error messages. Signed-off-by: NeilBrown --- diff --git a/super0.c b/super0.c index e7d86d87..85acf368 100644 --- a/super0.c +++ b/super0.c @@ -662,7 +662,7 @@ static int update_super0(struct supertype *st, struct mdinfo *info, sb->new_chunk/512 * (sb->raid_disks - sb->delta_disks - parity))) { pr_err("Reshape position is not suitably aligned.\n"); - pr_err("Try normal assembly as stop again\n"); + pr_err("Try normal assembly and stop again\n"); return -2; } sb->raid_disks -= sb->delta_disks; diff --git a/super1.c b/super1.c index 6ec8542b..eb420580 100644 --- a/super1.c +++ b/super1.c @@ -1284,7 +1284,7 @@ static int update_super1(struct supertype *st, struct mdinfo *info, (__le32_to_cpu(sb->level)==6 ? 2 : 1); if (reshape_sectors % reshape_chunk) { pr_err("Reshape position is not suitably aligned.\n"); - pr_err("Try normal assembly as stop again\n"); + pr_err("Try normal assembly and stop again\n"); return -2; } }