diff options
author | Christophe Fergeau | 2008-08-10 23:36:33 +0200 |
---|---|---|
committer | Matt Colyer | 2008-08-11 09:39:06 -0700 |
commit | eea922593e61a71d3f231578f1e8c4c7f035ec9c (patch) | |
tree | 823d5ae4e53be4b83377ab205b1aed94fe06c021 /src/usbmux.c | |
parent | 323459826aeea8b88872e14af9839a0912a80503 (diff) | |
download | libplist-eea922593e61a71d3f231578f1e8c4c7f035ec9c.tar.gz libplist-eea922593e61a71d3f231578f1e8c4c7f035ec9c.tar.bz2 |
Fix compilation with gcc 4.3 -Wall -Werror -Wno-pointer-sign
Signed-off-by: Matt Colyer <matt@colyer.name>
Diffstat (limited to 'src/usbmux.c')
-rw-r--r-- | src/usbmux.c | 2 |
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) { memcpy(buffer+sizeof(usbmux_tcp_header), data, datalen); // We have a buffer full of data, we should now send it to the phone. - if (debug) printf("actually sending %i bytes of data at %x\n", sizeof(usbmux_tcp_header)+datalen, buffer); + if (debug) printf("actually sending %zi bytes of data at %p\n", sizeof(usbmux_tcp_header)+datalen, buffer); bytes = send_to_phone(connection->phone, buffer, sizeof(usbmux_tcp_header)+datalen); |