Skip to content
Snippets Groups Projects
Commit ae76a675 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

more int vs long/size_t fixes after icc compiler warnings

parent 76241d0a
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,8 @@ static void end_squery(struct search_query *squery, int status,
/* Concatenate two domains. */
static int cat_domain(const char *name, const char *domain, char **s)
{
int nlen = strlen(name), dlen = strlen(domain);
size_t nlen = strlen(name);
size_t dlen = strlen(domain);
*s = malloc(nlen + 1 + dlen + 1);
if (!*s)
......@@ -201,7 +202,7 @@ static int cat_domain(const char *name, const char *domain, char **s)
*/
static int single_domain(ares_channel channel, const char *name, char **s)
{
int len = strlen(name);
size_t len = strlen(name);
const char *hostaliases;
FILE *fp;
char *line = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment