mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
reply: Pointer mismatch.
Apparently typeof (size_t) != unsigned int on my x86-64.
This commit is contained in:
parent
4a6a1ed654
commit
f52528a344
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue