From ed5a1f49812a29b6ad806778155890157981f252 Mon Sep 17 00:00:00 2001 From: Hector Martin Date: Tue, 11 May 2010 16:36:08 +0200 Subject: Make max_payload unsigned too --- daemon/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.1-32-gdbae