[notmuch] [PATCH] add missing comma in debugging code

2009-11-27 Thread Carl Worth
On Thu, 26 Nov 2009 11:32:35 -0400, David Bremner  wrote:
> - 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",

Thanks. This is pushed.

-Carl



Re: [notmuch] [PATCH] add missing comma in debugging code

2009-11-27 Thread Carl Worth
On Thu, 26 Nov 2009 11:32:35 -0400, David Bremner brem...@unb.ca wrote:
 - 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,

Thanks. This is pushed.

-Carl

___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


[notmuch] [PATCH] add missing comma in debugging code

2009-11-26 Thread David Bremner
---
 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