Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1423459AbdDVMsj (ORCPT ); Sat, 22 Apr 2017 08:48:39 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:43205 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1423359AbdDVMs2 (ORCPT ); Sat, 22 Apr 2017 08:48:28 -0400 From: Colin King To: Boaz Harrosh , Benny Halevy , osd-dev@open-osd.org Cc: linux-kernel@vger.kernel.org Subject: [PATCH] ore: fix spelling mistake: "Multples" -> "multiples" Date: Sat, 22 Apr 2017 13:48:23 +0100 Message-Id: <20170422124823.10107-1-colin.king@canonical.com> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 743 Lines: 25 From: Colin Ian King trivial fix to spelling mistake in ORE_ERR message and make word all lower case. Signed-off-by: Colin Ian King --- fs/exofs/ore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/exofs/ore.c b/fs/exofs/ore.c index 8bb72807e70d..811522ae45e1 100644 --- a/fs/exofs/ore.c +++ b/fs/exofs/ore.c @@ -68,7 +68,7 @@ int ore_verify_layout(unsigned total_comps, struct ore_layout *layout) } if (0 != (layout->stripe_unit & ~PAGE_MASK)) { ORE_ERR("Stripe Unit(0x%llx)" - " must be Multples of PAGE_SIZE(0x%lx)\n", + " must be multiples of PAGE_SIZE(0x%lx)\n", _LLU(layout->stripe_unit), PAGE_SIZE); return -EINVAL; } -- 2.11.0