diff options
author | Hector Martin | 2010-05-11 16:36:08 +0200 |
---|---|---|
committer | Hector Martin | 2010-05-11 16:36:08 +0200 |
commit | ed5a1f49812a29b6ad806778155890157981f252 (patch) | |
tree | 0e38690348d3632307dae0f4b8d069dd3f7ce6df /daemon | |
parent | 4c3d762fd6da36cfe877506b74820850eef9f706 (diff) | |
download | usbmuxd-ed5a1f49812a29b6ad806778155890157981f252.tar.gz usbmuxd-ed5a1f49812a29b6ad806778155890157981f252.tar.bz2 |
Make max_payload unsigned toov1.0.4
Diffstat (limited to 'daemon')
-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 684e009..0db058c 100644 --- a/daemon/device.c +++ b/daemon/device.c @@ -89,7 +89,7 @@ struct mux_connection uint16_t sport, dport; uint32_t tx_seq, tx_ack, tx_acked, tx_win; uint32_t rx_seq, rx_recvd, rx_ack, rx_win; - int max_payload; + uint32_t max_payload; uint32_t sendable; int flags; unsigned char *ib_buf; |