summaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorGravatar Hector Martin2010-02-07 01:59:18 +0100
committerGravatar Hector Martin2010-02-07 02:00:48 +0100
commit719ebc32464581ebc6b465d2fe78e642c1f50e20 (patch)
treeb31f28e0bfb0ebf58d4ed3dd2e75ddc2530463bb /daemon
parentc9db7c05573bee6e819ae76095e0d80f5fe02dd4 (diff)
downloadusbmuxd-719ebc32464581ebc6b465d2fe78e642c1f50e20.tar.gz
usbmuxd-719ebc32464581ebc6b465d2fe78e642c1f50e20.tar.bz2
Remove silly null statementv1.0.2
Diffstat (limited to 'daemon')
-rw-r--r--daemon/device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/device.c b/daemon/device.c
index 824edac..acedbdf 100644
--- a/daemon/device.c
+++ b/daemon/device.c
@@ -166,7 +166,7 @@ static int send_packet(struct mux_device *dev, enum mux_protocol proto, void *he
166 buffer = malloc(total); 166 buffer = malloc(total);
167 struct mux_header *mhdr = (struct mux_header *)buffer; 167 struct mux_header *mhdr = (struct mux_header *)buffer;
168 mhdr->protocol = htonl(proto); 168 mhdr->protocol = htonl(proto);
169 mhdr->length = htonl(total);; 169 mhdr->length = htonl(total);
170 memcpy(buffer + sizeof(struct mux_header), header, hdrlen); 170 memcpy(buffer + sizeof(struct mux_header), header, hdrlen);
171 if(data && length) 171 if(data && length)
172 memcpy(buffer + sizeof(struct mux_header) + hdrlen, data, length); 172 memcpy(buffer + sizeof(struct mux_header) + hdrlen, data, length);