浏览代码

msrp: fix compile warning of argument type in dbg message

- reported by Olle E. Johansson
Daniel-Constantin Mierla 12 年之前
父节点
当前提交
7339d847ad
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/msrp/msrp_parser.c

+ 1 - 1
modules/msrp/msrp_parser.c

@@ -538,7 +538,7 @@ int msrp_parse_uri(char *start, int len, msrp_uri_t *uri)
 
 error:
 	LM_ERR("parsing error in [%.*s] at [%ld]\n",
-			len, start, s - start);
+			len, start, (long int)(s - start));
 	memset(uri, 0, sizeof(msrp_uri_t));
 	return -1;
 }