From 8050de72b9910a923959e26cd5cc9e3181ae7761 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Wed, 9 Oct 2013 17:44:11 +0200 Subject: Remove duplicate newline from debug messages as one is added automatically --- src/afc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/afc.c') diff --git a/src/afc.c b/src/afc.c index fc6ce73..e3da184 100644 --- a/src/afc.c +++ b/src/afc.c @@ -215,7 +215,7 @@ static afc_error_t afc_dispatch_packet(afc_client_t client, const char *data, ui if ((length) < (client->afc_packet->entire_length - client->afc_packet->this_length)) { debug_info("Length did not resemble what it was supposed to based on packet"); debug_info("length minus offset: %i", length - offset); - debug_info("rest of packet: %i\n", client->afc_packet->entire_length - client->afc_packet->this_length); + debug_info("rest of packet: %i", client->afc_packet->entire_length - client->afc_packet->this_length); return AFC_E_INTERNAL_ERROR; } -- cgit v1.1-32-gdbae