From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752185Ab1B0Efs (ORCPT ); Sat, 26 Feb 2011 23:35:48 -0500 Received: from mail-iw0-f174.google.com ([209.85.214.174]:60433 "EHLO mail-iw0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751951Ab1B0Eeu (ORCPT ); Sat, 26 Feb 2011 23:34:50 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=hRG3IZt1DtXds4Npj7pSZVlKCHk0mMZ+zJF7zZ+48EDLIDb2l+wCG7icR+b0YF7Gai qfsVPvMwDpaSXdDsbNp7TzFXm1s6eRiD4zA8G4/0CkT76rnh7eK06AhleX098p29t7n0 rr8SZcMoNINfpQpYMehnN8N2vxEITCn5+ekGE= From: "Justin P. Mattock" To: trivial@kernel.org Cc: linux-kernel@vger.kernel.org, "Justin P. Mattock" , Andrew Morton , Jan Kara , linux-ext4@vger.kernel.org Subject: [PATCH 12/17]fs:jbd Remove one to many n's in a word. Date: Sat, 26 Feb 2011 20:34:05 -0800 Message-Id: <1298781250-2718-13-git-send-email-justinmattock@gmail.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1298781250-2718-1-git-send-email-justinmattock@gmail.com> References: <1298781250-2718-1-git-send-email-justinmattock@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The Patch below removes one to many "n's" in a word.. Signed-off-by: Justin P. Mattock CC: Andrew Morton CC: Jan Kara CC: linux-ext4@vger.kernel.org --- fs/jbd/journal.c | 2 +- fs/jbd2/journal.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c index da1b5e4..eb11601 100644 --- a/fs/jbd/journal.c +++ b/fs/jbd/journal.c @@ -839,7 +839,7 @@ journal_t * journal_init_inode (struct inode *inode) err = journal_bmap(journal, 0, &blocknr); /* If that failed, give up */ if (err) { - printk(KERN_ERR "%s: Cannnot locate journal superblock\n", + printk(KERN_ERR "%s: Cannot locate journal superblock\n", __func__); goto out_err; } diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c index 97e7346..90407b8 100644 --- a/fs/jbd2/journal.c +++ b/fs/jbd2/journal.c @@ -991,7 +991,7 @@ journal_t * jbd2_journal_init_inode (struct inode *inode) err = jbd2_journal_bmap(journal, 0, &blocknr); /* If that failed, give up */ if (err) { - printk(KERN_ERR "%s: Cannnot locate journal superblock\n", + printk(KERN_ERR "%s: Cannot locate journal superblock\n", __func__); goto out_err; } -- 1.7.4.1