Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 2c / 5bf1b60154f4adbb4b771a85b21eca0725f5fd
1 Return-Path: <chris@chris-wilson.co.uk>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 8DCC7431FC2\r
6         for <notmuch@notmuchmail.org>; Wed, 18 Nov 2009 03:36:43 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 Received: from olra.theworths.org ([127.0.0.1])\r
9         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
10         with ESMTP id 8pJlIDckt9RA for <notmuch@notmuchmail.org>;\r
11         Wed, 18 Nov 2009 03:36:42 -0800 (PST)\r
12 Received: from orsmga101.jf.intel.com (mga06.intel.com [134.134.136.21])\r
13         by olra.theworths.org (Postfix) with ESMTP id BA043431FBC\r
14         for <notmuch@notmuchmail.org>; Wed, 18 Nov 2009 03:36:40 -0800 (PST)\r
15 Received: from orsmga001.jf.intel.com ([10.7.209.18])\r
16         by orsmga101.jf.intel.com with ESMTP; 18 Nov 2009 03:22:15 -0800\r
17 X-ExtLoop1: 1\r
18 X-IronPort-AV: E=Sophos;i="4.44,764,1249282800"; d="scan'208";a="570709311"\r
19 Received: from unknown (HELO localhost.localdomain) ([10.255.16.119])\r
20         by orsmga001.jf.intel.com with ESMTP; 18 Nov 2009 03:36:30 -0800\r
21 From: Chris Wilson <chris@chris-wilson.co.uk>\r
22 To: notmuch@notmuchmail.org\r
23 Date: Wed, 18 Nov 2009 11:34:55 +0000\r
24 Message-Id: <1258544095-16616-2-git-send-email-chris@chris-wilson.co.uk>\r
25 X-Mailer: git-send-email 1.6.5.2\r
26 In-Reply-To: <1258544095-16616-1-git-send-email-chris@chris-wilson.co.uk>\r
27 References: <1258544095-16616-1-git-send-email-chris@chris-wilson.co.uk>\r
28 Subject: [notmuch] [PATCH 2/2] reply: Pointer mismatch.\r
29 X-BeenThere: notmuch@notmuchmail.org\r
30 X-Mailman-Version: 2.1.12\r
31 Precedence: list\r
32 List-Id: "Use and development of the notmuch mail system."\r
33         <notmuch.notmuchmail.org>\r
34 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
35         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
36 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
37 List-Post: <mailto:notmuch@notmuchmail.org>\r
38 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
39 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
40         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
41 X-List-Received-Date: Wed, 18 Nov 2009 11:36:43 -0000\r
42 \r
43 Apparently typeof (size_t) != unsigned int on my x86-64.\r
44 ---\r
45  notmuch-reply.c |    2 +-\r
46  1 files changed, 1 insertions(+), 1 deletions(-)\r
47 \r
48 diff --git a/notmuch-reply.c b/notmuch-reply.c\r
49 index 4a4a782..344b6e3 100644\r
50 --- a/notmuch-reply.c\r
51 +++ b/notmuch-reply.c\r
52 @@ -78,7 +78,7 @@ address_is_users (const char *address, notmuch_config_t *config)\r
53  {\r
54      const char *primary;\r
55      char **other;\r
56 -    unsigned int i, other_len;\r
57 +    size_t i, other_len;\r
58  \r
59      primary = notmuch_config_get_user_primary_email (config);\r
60      if (strcmp (primary, address) == 0)\r
61 -- \r
62 1.6.5.2\r
63 \r