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 --- serial/proxy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'serial/proxy.c') diff --git a/serial/proxy.c b/serial/proxy.c index d2831083..76f2e1d2 100644 --- a/serial/proxy.c +++ b/serial/proxy.c @@ -1033,7 +1033,8 @@ static void parse_proxy(char *key, char *value, void *data) char uuid128[MAX_LEN_UUID_STR], tmp[3]; char *pvalue; proxy_type_t type; - int ch, opts, pos; + unsigned int pos; + int ch, opts; struct termios ti; uint8_t *pti; -- cgit