From f6fc513ad968c40d1c990024c4985fa285ba93b6 Mon Sep 17 00:00:00 2001 From: Mikko Lehto Date: Tue, 9 Jun 2015 12:24:48 +0300 Subject: [PATCH] modules/call_control: change type to fix clang compiler warning call_control.c:503:19: warning: implicit conversion from 'hdr_flags_t' (aka 'unsigned long long') to 'int' changes value from 18446744073709551615 to -1 [-Wconstant-conversion] --- modules/call_control/call_control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/call_control/call_control.c b/modules/call_control/call_control.c index 1bd6fcce9ca..4f2e53dcb6e 100644 --- a/modules/call_control/call_control.c +++ b/modules/call_control/call_control.c @@ -490,7 +490,7 @@ static CallInfo* get_call_info(struct sip_msg *msg, CallControlAction action) { static CallInfo call_info; - int headers; + hdr_flags_t headers; memset(&call_info, 0, sizeof(struct CallInfo));