summaryrefslogtreecommitdiffstats
path: root/cups
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-01-29 17:58:28 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-01-29 17:58:28 +0100
commit9c0b5859e6cc4b7a0e925fde8665990281b265d3 (patch)
tree8994dbe0942d56c9a7cf470fc3b2316d1f91e0a3 /cups
parent1ce81e1e0794a5d619016e17b33b533b614fc6a9 (diff)
Fix mostly every warning caused by -Wsign-compare
Diffstat (limited to 'cups')
-rw-r--r--cups/hcrp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cups/hcrp.c b/cups/hcrp.c
index 6739b3d4..155236d6 100644
--- a/cups/hcrp.c
+++ b/cups/hcrp.c
@@ -177,7 +177,8 @@ int hcrp_print(bdaddr_t *src, bdaddr_t *dst, unsigned short ctrl_psm, unsigned s
struct l2cap_options opts;
socklen_t size;
unsigned char buf[2048];
- int i, ctrl_sk, data_sk, mtu, count, len, timeout = 0;
+ int i, ctrl_sk, data_sk, count, len, timeout = 0;
+ unsigned int mtu;
uint8_t status;
uint16_t tid = 0;
uint32_t tmp, credit = 0;