]> git.notmuchmail.org Git - notmuch/blob - test/corpora/lkml/cur/1382298793.002269:2,
test: add 'lkml' corpus
[notmuch] / test / corpora / lkml / cur / 1382298793.002269:2,
1 From: Joe Perches <joe@perches.com>
2 Subject: [PATCH 32/44] fs/9p: Remove unnecessary semicolons
3 Date: Sun, 14 Nov 2010 19:04:51 -0800
4 Lines: 35
5 Message-ID: <f6ae29dfdd0b9ad401f5eb77ae670212689ee921.1289789605.git.joe@perches.com>
6 References: <cover.1289789604.git.joe@perches.com>
7 Cc: Eric Van Hensbergen <ericvh@gmail.com>,
8         Ron Minnich <rminnich@sandia.gov>,
9         Latchesar Ionkov <lucho@ionkov.net>,
10         v9fs-developer@lists.sourceforge.net, linux-kernel@vger.kernel.org
11 To: Jiri Kosina <trivial@kernel.org>
12 X-From: linux-kernel-owner@vger.kernel.org Mon Nov 15 04:07:26 2010
13 Return-path: <linux-kernel-owner@vger.kernel.org>
14 Envelope-to: glk-linux-kernel-3@lo.gmane.org
15 Received: from vger.kernel.org ([209.132.180.67])
16         by lo.gmane.org with esmtp (Exim 4.69)
17         (envelope-from <linux-kernel-owner@vger.kernel.org>)
18         id 1PHpPg-0001H8-Sy
19         for glk-linux-kernel-3@lo.gmane.org; Mon, 15 Nov 2010 04:07:25 +0100
20 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand
21         id S932992Ab0KODGD (ORCPT <rfc822;glk-linux-kernel-3@m.gmane.org>);
22         Sun, 14 Nov 2010 22:06:03 -0500
23 Received: from mail.perches.com ([173.55.12.10]:1227 "EHLO mail.perches.com"
24         rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP
25         id S932846Ab0KODF4 (ORCPT <rfc822;linux-kernel@vger.kernel.org>);
26         Sun, 14 Nov 2010 22:05:56 -0500
27 Received: from Joe-Laptop.home (unknown [192.168.1.162])
28         by mail.perches.com (Postfix) with ESMTP id C9F2E2436F;
29         Sun, 14 Nov 2010 19:04:23 -0800 (PST)
30 X-Mailer: git-send-email 1.7.3.1.g432b3.dirty
31 In-Reply-To: <cover.1289789604.git.joe@perches.com>
32 Sender: linux-kernel-owner@vger.kernel.org
33 Precedence: bulk
34 List-ID: <linux-kernel.vger.kernel.org>
35 X-Mailing-List: linux-kernel@vger.kernel.org
36 Archived-At: <http://permalink.gmane.org/gmane.linux.kernel/1062288>
37
38 Signed-off-by: Joe Perches <joe@perches.com>
39 ---
40  fs/9p/acl.c   |    2 +-
41  fs/9p/xattr.c |    2 +-
42  2 files changed, 2 insertions(+), 2 deletions(-)
43
44 diff --git a/fs/9p/acl.c b/fs/9p/acl.c
45 index 12d6023..bc4da9a 100644
46 --- a/fs/9p/acl.c
47 +++ b/fs/9p/acl.c
48 @@ -28,7 +28,7 @@ static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name)
49  {
50         ssize_t size;
51         void *value = NULL;
52 -       struct posix_acl *acl = NULL;;
53 +       struct posix_acl *acl = NULL;
54  
55         size = v9fs_fid_xattr_get(fid, name, NULL, 0);
56         if (size > 0) {
57 diff --git a/fs/9p/xattr.c b/fs/9p/xattr.c
58 index 43ec7df..d288773 100644
59 --- a/fs/9p/xattr.c
60 +++ b/fs/9p/xattr.c
61 @@ -133,7 +133,7 @@ int v9fs_xattr_set(struct dentry *dentry, const char *name,
62                         "p9_client_xattrcreate failed %d\n", retval);
63                 goto error;
64         }
65 -       msize = fid->clnt->msize;;
66 +       msize = fid->clnt->msize;
67         while (value_len) {
68                 if (value_len > (msize - P9_IOHDRSZ))
69                         write_count = msize - P9_IOHDRSZ;
70 -- 
71 1.7.3.1.g432b3.dirty
72
73
74