mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
add missing comma in debugging code
This commit is contained in:
parent
f0bb5e9c3e
commit
12c91e8050
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ _notmuch_message_get_in_reply_to (notmuch_message_t *message)
|
||||||
if (i != message->doc.termlist_end () &&
|
if (i != message->doc.termlist_end () &&
|
||||||
strncmp ((*i).c_str (), prefix, prefix_len))
|
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),
|
notmuch_message_get_message_id (message),
|
||||||
message->in_reply_to,
|
message->in_reply_to,
|
||||||
(*i).c_str () + prefix_len);
|
(*i).c_str () + prefix_len);
|
||||||
|
|
Loading…
Reference in a new issue