Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752243AbcLJGwP (ORCPT ); Sat, 10 Dec 2016 01:52:15 -0500 Received: from mailrelay119.isp.belgacom.be ([195.238.20.146]:9704 "EHLO mailrelay119.isp.belgacom.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751359AbcLJGwO (ORCPT ); Sat, 10 Dec 2016 01:52:14 -0500 X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2B7AgCypUtY/9JLtVtdHAEBBAEBCgEBg?= =?us-ascii?q?zcBAQEBAR+BYI1JlzoBkkyCD4IIhhsEAoFnQBQBAgEBAQEBAQFiKIUWLyMpJks?= =?us-ascii?q?kARKIb601PYtShj6PBAWaa5EhApBDkhkfN4Efgw4BURyBXj00iFcBAQE?= X-IPAS-Result: =?us-ascii?q?A2B7AgCypUtY/9JLtVtdHAEBBAEBCgEBgzcBAQEBAR+BYI1?= =?us-ascii?q?JlzoBkkyCD4IIhhsEAoFnQBQBAgEBAQEBAQFiKIUWLyMpJkskARKIb601PYtSh?= =?us-ascii?q?j6PBAWaa5EhApBDkhkfN4Efgw4BURyBXj00iFcBAQE?= From: Fabian Frederick To: Dave Chinner , Eric Sandeen Cc: linux-xfs@vger.kernel.org, linux-kernel@vger.kernel.org, fabf@skynet.be Subject: [PATCH 1/1 linux-next] xfs: remove unnecessary return Date: Sat, 10 Dec 2016 07:52:09 +0100 Message-Id: <1481352729-7020-1-git-send-email-fabf@skynet.be> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 737 Lines: 33 Commit f7a136aee3c1 ("xfs: several xattr functions can be void") updated 2 end of function return 0 to return in void functions. Remove it. Signed-off-by: Fabian Frederick --- fs/xfs/xfs_attr_list.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fs/xfs/xfs_attr_list.c b/fs/xfs/xfs_attr_list.c index 97c45b6..5aa46c3 100644 --- a/fs/xfs/xfs_attr_list.c +++ b/fs/xfs/xfs_attr_list.c @@ -433,7 +433,6 @@ xfs_attr3_leaf_list_int( cursor->offset++; } trace_xfs_attr_list_leaf_end(context); - return; } /* @@ -543,7 +542,6 @@ xfs_attr_put_listent( alist->al_offset[context->count++] = context->firstu; alist->al_count = context->count; trace_xfs_attr_list_add(context); - return; } /* -- 2.7.4