summaryrefslogtreecommitdiffstats
path: root/src/usbmux.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/usbmux.c')
-rw-r--r--src/usbmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usbmux.c b/src/usbmux.c
index d79ee47..83797dd 100644
--- a/src/usbmux.c
+++ b/src/usbmux.c
@@ -200,7 +200,7 @@ int mux_send(usbmux_connection *connection, const char *data, uint32 datalen) {
200 memcpy(buffer+sizeof(usbmux_tcp_header), data, datalen); 200 memcpy(buffer+sizeof(usbmux_tcp_header), data, datalen);
201 201
202 // We have a buffer full of data, we should now send it to the phone. 202 // We have a buffer full of data, we should now send it to the phone.
203 if (debug) printf("actually sending %i bytes of data at %x\n", sizeof(usbmux_tcp_header)+datalen, buffer); 203 if (debug) printf("actually sending %zi bytes of data at %p\n", sizeof(usbmux_tcp_header)+datalen, buffer);
204 204
205 205
206 bytes = send_to_phone(connection->phone, buffer, sizeof(usbmux_tcp_header)+datalen); 206 bytes = send_to_phone(connection->phone, buffer, sizeof(usbmux_tcp_header)+datalen);