From: Chris Wilson <chris@chris-wilson.co.uk>
Date: Wed, 18 Nov 2009 11:34:55 +0000 (+0000)
Subject: reply: Pointer mismatch.
X-Git-Tag: 0.1~432
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=f52528a344aee5111f6356f50678dfd54d5d80f6;p=notmuch-old

reply: Pointer mismatch.

Apparently typeof (size_t) != unsigned int on my x86-64.
---

diff --git a/notmuch-reply.c b/notmuch-reply.c
index 31e2c87c..e4de4743 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)