aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-reply.c
diff options
context:
space:
mode:
authorGravatar Chris Wilson <chris@chris-wilson.co.uk>2009-11-18 11:34:55 +0000
committerGravatar Carl Worth <cworth@cworth.org>2009-11-19 00:20:24 +0100
commitf52528a344aee5111f6356f50678dfd54d5d80f6 (patch)
tree72956f99dd776283bdcbb63f995f5443b23e19a5 /notmuch-reply.c
parent4a6a1ed654291a720c75c6b6c078fe52f206dc8a (diff)
reply: Pointer mismatch.
Apparently typeof (size_t) != unsigned int on my x86-64.
Diffstat (limited to 'notmuch-reply.c')
-rw-r--r--notmuch-reply.c2
1 files changed, 1 insertions, 1 deletions
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)