From f52528a344aee5111f6356f50678dfd54d5d80f6 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Wed, 18 Nov 2009 11:34:55 +0000 Subject: [PATCH] reply: Pointer mismatch. Apparently typeof (size_t) != unsigned int on my x86-64. --- notmuch-reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.43.0