diff options
author | Hector Martin | 2010-06-17 18:24:00 +0200 |
---|---|---|
committer | Hector Martin | 2010-06-17 18:24:00 +0200 |
commit | 7a4ab4e6a6225f06d01405187c19cfa3cb7bd600 (patch) | |
tree | 55a4cb782852bda1bdeb0fb0a1445508458712f3 | |
parent | 63ffaef5b9ba6225d2106f9d4ec07dd318163287 (diff) | |
download | usbmuxd-7a4ab4e6a6225f06d01405187c19cfa3cb7bd600.tar.gz usbmuxd-7a4ab4e6a6225f06d01405187c19cfa3cb7bd600.tar.bz2 |
Remove spurious newline in message
-rw-r--r-- | daemon/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/device.c b/daemon/device.c index 0db058c..0a143b2 100644 --- a/daemon/device.c +++ b/daemon/device.c @@ -650,7 +650,7 @@ int device_add(struct usb_device *usbdev) vh.minor = htonl(0); vh.padding = 0; if((res = send_packet(dev, MUX_PROTO_VERSION, &vh, NULL, 0)) < 0) { - usbmuxd_log(LL_ERROR, "Error sending version request packet to device %d\n", id); + usbmuxd_log(LL_ERROR, "Error sending version request packet to device %d", id); free(dev); return res; } |