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 2750E431FBC for ; Thu, 26 Nov 2009 07:33:00 -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 SCCxhQg2vG5y for ; Thu, 26 Nov 2009 07:32:59 -0800 (PST) Received: from mout.perfora.net (mout.perfora.net [74.208.4.194]) by olra.theworths.org (Postfix) with ESMTP id 8029F431FAE for ; Thu, 26 Nov 2009 07:32:59 -0800 (PST) Received: from convex-new.cs.unb.ca (convex-new.cs.unb.ca [131.202.245.35]) by mx.perfora.net (node=mxus1) with ESMTP (Nemesis) id 0Lptd9-1Npk3J3awJ-00figi for notmuch@notmuchmail.org; Thu, 26 Nov 2009 10:32:59 -0500 Received: from bremner by convex-new.cs.unb.ca with local (Exim 4.69) (envelope-from ) id 1NDgL3-0008W4-Fu; Thu, 26 Nov 2009 11:32:57 -0400 From: David Bremner To: notmuch@notmuchmail.org Date: Thu, 26 Nov 2009 11:32:35 -0400 Message-Id: <1259249555-32701-1-git-send-email-bremner@unb.ca> X-Mailer: git-send-email 1.6.5.3 X-Mailman-Approved-At: Thu, 26 Nov 2009 10:22:36 -0800 Cc: David Bremner Subject: [notmuch] [PATCH] add missing comma in debugging code 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: Thu, 26 Nov 2009 15:33:00 -0000 --- lib/message.cc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/message.cc b/lib/message.cc index 1e325e2..832a1b9 100644 --- a/lib/message.cc +++ b/lib/message.cc @@ -318,7 +318,7 @@ _notmuch_message_get_in_reply_to (notmuch_message_t *message) if (i != message->doc.termlist_end () && strncmp ((*i).c_str (), prefix, prefix_len)) { - INTERNAL_ERROR ("Message %s has duplicate In-Reply-To IDs: %s and %s\n" + INTERNAL_ERROR ("Message %s has duplicate In-Reply-To IDs: %s and %s\n", notmuch_message_get_message_id (message), message->in_reply_to, (*i).c_str () + prefix_len); -- 1.6.5.3