From 086d443338ec4fa70f27f0880e63eb08f112c390 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 11 Nov 2014 13:51:16 +0100 Subject: client: Remove invalid line feed from log message --- src/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.c b/src/client.c index d5f31e4..403340a 100644 --- a/src/client.c +++ b/src/client.c @@ -231,7 +231,7 @@ static int send_pkt(struct mux_client *client, uint32_t tag, enum usbmuxd_msgtyp usbmuxd_log(LL_DEBUG, "%s: Enlarging client %d output buffer %d -> %d", __func__, client->fd, client->ob_capacity, new_size); new_buf = realloc(client->ob_buf, new_size); if (!new_buf) { - usbmuxd_log(LL_FATAL, "%s: Failed to realloc.\n", __func__); + usbmuxd_log(LL_FATAL, "%s: Failed to realloc.", __func__); return -1; } client->ob_buf = new_buf; -- cgit v1.1-32-gdbae