Fix following with GCC version 4.8.2 (Debian 4.8.2-21): tools/hex2hcd.c: In function ‘main’: tools/hex2hcd.c:118:19: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] for (i = 0; i < hex_to_int(rbuf + 1); i++) { ^ cc1: all warnings being treated as errors --- tools/hex2hcd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/hex2hcd.c b/tools/hex2hcd.c index c5e5e1f..d9b5d3b 100644 --- a/tools/hex2hcd.c +++ b/tools/hex2hcd.c @@ -70,10 +70,10 @@ static int check_hex_line(const char *str, unsigned int len) int main(int argc, char *argv[]) { - unsigned int addr = 0; + unsigned int i, addr = 0; FILE *ifp, *ofp; char *rbuf; - ssize_t len, i; + ssize_t len; size_t buflen; if (argc != 3) { -- 2.0.0.rc2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html