From patchwork Thu Aug 16 13:17:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Sheng-Hui X-Patchwork-Id: 1331821 Return-Path: X-Original-To: patchwork-linux-btrfs@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 360B83FC33 for ; Thu, 16 Aug 2012 13:17:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756381Ab2HPNRp (ORCPT ); Thu, 16 Aug 2012 09:17:45 -0400 Received: from mail-yw0-f46.google.com ([209.85.213.46]:48439 "EHLO mail-yw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932161Ab2HPNRm (ORCPT ); Thu, 16 Aug 2012 09:17:42 -0400 Received: by yhmm54 with SMTP id m54so2854619yhm.19 for ; Thu, 16 Aug 2012 06:17:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=afd9Wo54XQlNAypwMIu5jLslErIrS3zZpL2GcHUie0Q=; b=Q1S5xmnqMKHJ6ZfDFyit/tyshfW1STADbgZOOnYuD9sREjdOoyFCQySIrJbXsT3G76 7323nXGwTLPoFOludcko+0F2ICTkS+FtxKjOye1aRjxaH9hMN6gCsfRKaezE8GwAQs7I 8H0b437L1iiDJyg+ueKrM9LWX9a9wwM8mj3/xR+9mHvu5yRVjWeaLaxw3wwNAy7wFZ1A Ld5/mMBF3syBKr3EY/RkKY0QsMhd1K4ptTGge99ZY8+tcuNt1GdNiloU95lFRSX+i2Q6 Bfn3djxq0sVpGoxiKfHQQ0ChtJYd2UjG4GFfzJXZfg70GwJTRJaATdDHLcWEC04r7VIH /Onw== Received: by 10.66.89.70 with SMTP id bm6mr2208766pab.41.1345123061814; Thu, 16 Aug 2012 06:17:41 -0700 (PDT) Received: from [192.168.1.103] ([122.70.29.184]) by mx.google.com with ESMTPS id to2sm275712pbc.61.2012.08.16.06.17.39 (version=SSLv3 cipher=OTHER); Thu, 16 Aug 2012 06:17:40 -0700 (PDT) Message-ID: <502CF2F0.7020601@gmail.com> Date: Thu, 16 Aug 2012 21:17:36 +0800 From: Wang Sheng-Hui User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.18) Gecko/20110617 Thunderbird/3.1.11 MIME-Version: 1.0 To: linux-btrfs@vger.kernel.org Subject: [PATCH] btrfs-progs: trivial code style fix in root-tree.c Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org Add code indent to the bad styled statements. Signed-off-by: Wang Sheng-Hui --- root-tree.c | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/root-tree.c b/root-tree.c index 782472c..39cfef6 100644 --- a/root-tree.c +++ b/root-tree.c @@ -182,12 +182,10 @@ int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root, if (ret < 0) goto out; if (ret) { -btrfs_print_leaf(root, path->nodes[0]); -printk("failed to del %llu %u %llu\n", - (unsigned long long)key->objectid, - key->type, - (unsigned long long)key->offset); - + btrfs_print_leaf(root, path->nodes[0]); + printk("failed to del %llu %u %llu\n", + (unsigned long long)key->objectid, key->type, + (unsigned long long)key->offset); } BUG_ON(ret != 0); leaf = path->nodes[0];