clang warnings

This commit is contained in:
Olof Hagsand 2019-12-23 14:03:42 +00:00
parent 7fb452f96e
commit a87e9cb246
9 changed files with 11 additions and 11 deletions

View file

@ -193,7 +193,7 @@ restconf_content_type(FCGX_Request *r)
if ((str = FCGX_GetParam("HTTP_CONTENT_TYPE", r->envp)) == NULL)
return -1;
if ((m = restconf_media_str2int(str)) == -1)
if ((int)(m = restconf_media_str2int(str)) == -1)
return -1;
return m;
}