[notmuch] [PATCH 2/2] reply: Pointer mismatch.

Subject: [notmuch] [PATCH 2/2] reply: Pointer mismatch.

Date: Wed, 18 Nov 2009 11:34:55 +0000

To: notmuch@notmuchmail.org

Cc:

From: Chris Wilson


Apparently typeof (size_t) != unsigned int on my x86-64.
---
 notmuch-reply.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/notmuch-reply.c b/notmuch-reply.c
index 4a4a782..344b6e3 100644
--- a/notmuch-reply.c
+++ b/notmuch-reply.c
@@ -78,7 +78,7 @@ address_is_users (const char *address, notmuch_config_t *config)
 {
     const char *primary;
     char **other;
-    unsigned int i, other_len;
+    size_t i, other_len;
 
     primary = notmuch_config_get_user_primary_email (config);
     if (strcmp (primary, address) == 0)
-- 
1.6.5.2


Thread: