Skip to content

Commit

Permalink
b2b_logic: Fix newline character in debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Altmann committed Feb 1, 2021
1 parent d698da1 commit 2b2a174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/b2b_logic/records.c
Expand Up @@ -283,7 +283,7 @@ b2bl_tuple_t* b2bl_insert_new(struct sip_msg* msg, unsigned int hash_index,
LM_DBG("hash index [%d]:\n", hash_index);
for(it = b2bl_htable[hash_index].first; it; it=it->next)
{
LM_DBG("id [%d]", it->id);
LM_DBG("id [%d]\n", it->id);
}

b2bl_key = b2bl_generate_key(hash_index, tuple->id);
Expand Down

0 comments on commit 2b2a174

Please sign in to comment.