diff options
author | Nikias Bassen | 2014-11-11 13:51:16 +0100 |
---|---|---|
committer | Nikias Bassen | 2014-11-11 13:51:16 +0100 |
commit | 086d443338ec4fa70f27f0880e63eb08f112c390 (patch) | |
tree | 604a94c81f8088b814210985298e3a227387ff31 /src/client.c | |
parent | 5e017fbb36d4ccafb9be6859d90f2c04b20b3d06 (diff) | |
download | usbmuxd-086d443338ec4fa70f27f0880e63eb08f112c390.tar.gz usbmuxd-086d443338ec4fa70f27f0880e63eb08f112c390.tar.bz2 |
client: Remove invalid line feed from log message
Diffstat (limited to 'src/client.c')
-rw-r--r-- | src/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |