Skip to content
Snippets Groups Projects
Commit 234f9c52 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[$2402] Fix simple warnings

parent 84724c1a
Branches
Tags
No related merge requests found
......@@ -56,7 +56,7 @@ static unsigned short get_uint16(unsigned char *p)
static void internaloutput(const char *str)
{
printf(str);
printf("%s",str);
}
static void internalerror(const char *str)
......
......@@ -375,7 +375,7 @@ void Sdp::sdp_add_zrtp_attribute (pjmedia_sdp_media* media, std::string hash)
"%.*s %.*s",
4,
ZRTP_VERSION,
hash.size(),
(int)hash.size(),
hash.c_str());
attribute->value.slen = len;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment