From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752015Ab0IYScd (ORCPT ); Sat, 25 Sep 2010 14:32:33 -0400 Received: from mail-iw0-f174.google.com ([209.85.214.174]:41084 "EHLO mail-iw0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750828Ab0IYScc (ORCPT ); Sat, 25 Sep 2010 14:32:32 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=CdBZdVUcwuGihEmarOSV9eenI8IdB7QjqTU8xPoUQTssylAkCq26jFA0UZjICT6hpv 468Kl4eHHQp5pAKLnQ/zIGoDgZLs0m7kOfNkUvoVgpzlsUeMKC/2TniUQTH06n3LFUci PKBz8W+NmHlZX3JvAe5LqnW1sg9+fb9fMO6EQ= From: Tracey Dent To: tytso@mit.edu Cc: adilger.kernel@dilger.ca, jack@suse.cz, dmonakhov@openvz.org, sandeen@redhat.com, hch@lst.de, linux-ext4@vger.kernel.org, linux-kernel@vger.kernel.org, Tracey Dent , Tracey Dent Subject: [PATCH 01/10] Fs: ext4: acl.c: fixed indent issue Date: Sat, 25 Sep 2010 14:31:52 -0400 Message-Id: <1285439521-2557-1-git-send-email-tdent48227@gmail.com> X-Mailer: git-send-email 1.7.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Tracey Dent Found and corrected indent issue using checkpatch.pl Signed-off-by: Tracey Dent --- fs/ext4/acl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/ext4/acl.c b/fs/ext4/acl.c index 5e2ed45..16d39e3 100644 --- a/fs/ext4/acl.c +++ b/fs/ext4/acl.c @@ -27,7 +27,7 @@ ext4_acl_from_disk(const void *value, size_t size) if (!value) return NULL; if (size < sizeof(ext4_acl_header)) - return ERR_PTR(-EINVAL); + return ERR_PTR(-EINVAL); if (((ext4_acl_header *)value)->a_version != cpu_to_le32(EXT4_ACL_VERSION)) return ERR_PTR(-EINVAL); -- 1.7.3