From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vyacheslav Dubeyko Subject: [PATCH] hfsplus: trivial removing of obsolete prefix of error message in hfsplus_block_free() Date: Wed, 24 Apr 2013 15:50:07 +0400 Message-ID: <1366804207.2146.6.camel@slavad-ubuntu> Reply-To: slava@dubeyko.com Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: Andrew Morton , Christoph Hellwig , Al Viro , Hin-Tak Leung To: linux-fsdevel@vger.kernel.org Return-path: Received: from oproxy13-pub.unifiedlayer.com ([69.89.16.30]:51221 "HELO oproxy13-pub.unifiedlayer.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752890Ab3DXLuM (ORCPT ); Wed, 24 Apr 2013 07:50:12 -0400 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: From: Vyacheslav Dubeyko Subject: [PATCH] hfsplus: trivial removing of obsolete prefix of error message in hfsplus_block_free() This patch removes obsolete prefix of error message in hfsplus_block_free(). Signed-off-by: Vyacheslav Dubeyko --- fs/hfsplus/bitmap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fs/hfsplus/bitmap.c b/fs/hfsplus/bitmap.c index 826e864..d295445 100644 --- a/fs/hfsplus/bitmap.c +++ b/fs/hfsplus/bitmap.c @@ -238,8 +238,7 @@ out: return 0; kaboom: - pr_crit("hfsplus: unable to mark blocks free: error %ld\n", - PTR_ERR(page)); + pr_crit("unable to mark blocks free: error %ld\n", PTR_ERR(page)); mutex_unlock(&sbi->alloc_mutex); return -EIO; -- 1.7.9.5