From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io0-f179.google.com ([209.85.223.179]:35150 "EHLO mail-io0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751285AbcBUBb2 (ORCPT ); Sat, 20 Feb 2016 20:31:28 -0500 From: Simon Quigley To: clm@fb.com Cc: linux-btrfs@vger.kernel.org, linux-kernel@vger.kernel.org, Simon Quigley Subject: [PATCH 3/3] btrfs: backref: Fixed string error generated by Checkpatch Date: Sat, 20 Feb 2016 19:31:14 -0600 Message-Id: <1456018274-7847-3-git-send-email-tsimonq2@ubuntu.com> In-Reply-To: <1456018274-7847-1-git-send-email-tsimonq2@ubuntu.com> References: <1456018274-7847-1-git-send-email-tsimonq2@ubuntu.com> Sender: linux-btrfs-owner@vger.kernel.org List-ID: Checkpatch threw an error that this string was on two lines. I put the string on one line and the variables on the other Signed-off-by: Simon Quigley --- fs/btrfs/backref.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/btrfs/backref.c b/fs/btrfs/backref.c index 632845a..6e694f7 100644 --- a/fs/btrfs/backref.c +++ b/fs/btrfs/backref.c @@ -1636,9 +1636,8 @@ static int iterate_leaf_refs(struct extent_inode_elem *inode_list, int ret = 0; for (eie = inode_list; eie; eie = eie->next) { - pr_debug("ref for %llu resolved, key (%llu EXTEND_DATA %llu), " - "root %llu\n", extent_item_objectid, - eie->inum, eie->offset, root); + pr_debug("ref for %llu resolved, key (%llu EXTEND_DATA %llu), root %llu\n", + extent_item_objectid, eie->inum, eie->offset, root); ret = iterate(eie->inum, eie->offset, root, ctx); if (ret) { pr_debug("stopping iteration for %llu due to ret=%d\n", -- 2.7.0