From 9c0b5859e6cc4b7a0e925fde8665990281b265d3 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 29 Jan 2009 17:58:28 +0100 Subject: Fix mostly every warning caused by -Wsign-compare --- cups/hcrp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cups') 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; -- cgit