In certain cross compiling environment, if we build the code with enabling the maintainer mode, the following error happens. cc1: warnings being treated as errors lib/sdp.c: In function 'sdp_process': lib/sdp.c:4111:6: error: comparison between signed and unsigned integer expressions make[2]: *** [lib/sdp.lo] Error 1 make[1]: *** [all] Error 2 --- lib/sdp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/sdp.c b/lib/sdp.c index eaf8d00..81e328e 100644 --- a/lib/sdp.c +++ b/lib/sdp.c @@ -4108,7 +4108,7 @@ int sdp_process(sdp_session_t *session) } if (n == 0 || reqhdr->tid != rsphdr->tid || - (n != (ntohs(rsphdr->plen) + (int) sizeof(sdp_pdu_hdr_t)))) { + (n != (int) (ntohs(rsphdr->plen) + sizeof(sdp_pdu_hdr_t)))) { t->err = EPROTO; SDPERR("Protocol error."); goto end; -- 1.7.4.1 -- 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