Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 8DCC7431FC2 for ; Wed, 18 Nov 2009 03:36:43 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8pJlIDckt9RA for ; Wed, 18 Nov 2009 03:36:42 -0800 (PST) Received: from orsmga101.jf.intel.com (mga06.intel.com [134.134.136.21]) by olra.theworths.org (Postfix) with ESMTP id BA043431FBC for ; Wed, 18 Nov 2009 03:36:40 -0800 (PST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 18 Nov 2009 03:22:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.44,764,1249282800"; d="scan'208";a="570709311" Received: from unknown (HELO localhost.localdomain) ([10.255.16.119]) by orsmga001.jf.intel.com with ESMTP; 18 Nov 2009 03:36:30 -0800 From: Chris Wilson To: notmuch@notmuchmail.org Date: Wed, 18 Nov 2009 11:34:55 +0000 Message-Id: <1258544095-16616-2-git-send-email-chris@chris-wilson.co.uk> X-Mailer: git-send-email 1.6.5.2 In-Reply-To: <1258544095-16616-1-git-send-email-chris@chris-wilson.co.uk> References: <1258544095-16616-1-git-send-email-chris@chris-wilson.co.uk> Subject: [notmuch] [PATCH 2/2] reply: Pointer mismatch. X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 11:36:43 -0000 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