summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabrice Bellet <fabrice@bellet.info>2017-06-18 10:12:58 +0200
committerOlivier CrĂȘte <olivier.crete@collabora.com>2017-06-21 16:05:57 -0400
commitc7a5a92b66f9b83baf2aa446966bdfb2cf39ecd1 (patch)
treeade69fa4f910b38d398dc995bf569493e56d8b57
parentb4b8d6628c8c5d4f10af0101f846db4938a3f6c4 (diff)
downloadlibnice-c7a5a92b66f9b83baf2aa446966bdfb2cf39ecd1.tar.gz
agent: remove spurious newlines
Differential Revision: https://phabricator.freedesktop.org/D1756
-rw-r--r--agent/agent.c2
-rw-r--r--agent/component.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/agent/agent.c b/agent/agent.c
index e3705ed..27e6193 100644
--- a/agent/agent.c
+++ b/agent/agent.c
@@ -3905,7 +3905,7 @@ agent_recv_message_unlocked (
nice_address_to_string (message->from, str);
nice_debug_verbose ("Agent %p : %d:%d DROPPING packet from unknown source"
- " %s:%d sock-type: %d\n", agent, stream->id, component->id, str,
+ " %s:%d sock-type: %d", agent, stream->id, component->id, str,
nice_address_get_port (message->from), nicesock->type);
}
diff --git a/agent/component.c b/agent/component.c
index ab665b6..6e207d3 100644
--- a/agent/component.c
+++ b/agent/component.c
@@ -1461,7 +1461,7 @@ nice_component_add_valid_candidate (NiceComponent *component,
char str[INET6_ADDRSTRLEN];
nice_address_to_string (&candidate->addr, str);
nice_debug ("Agent %p : %d:%d Adding valid source"
- " candidate: %s:%d trans: %d\n", component->agent,
+ " candidate: %s:%d trans: %d", component->agent,
candidate->stream_id, candidate->component_id, str,
nice_address_get_port (&candidate->addr), candidate->transport);
}