X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fhtml-url.c;h=75bec7d97e7c56709fea35044385480466ea8cfb;hp=c9cf28f6df39fd470966b236b13d16c7e0f184b0;hb=2e2ac6ad2fc90eaf46ae5fee0bc4f61dd97b4284;hpb=f394450be685cb5bdf141f69fe74568a93dcd2d3 diff --git a/src/html-url.c b/src/html-url.c index c9cf28f6..75bec7d9 100644 --- a/src/html-url.c +++ b/src/html-url.c @@ -186,7 +186,7 @@ init_interesting (void) matches the user's preferences as specified through --ignore-tags and --follow-tags. */ - int i; + size_t i; interesting_tags = make_nocase_string_hash_table (countof (known_tags)); /* First, add all the tags we know hot to handle, mapped to their @@ -360,7 +360,8 @@ check_style_attr (struct taginfo *tag, struct map_context *ctx) static void tag_find_urls (int tagid, struct taginfo *tag, struct map_context *ctx) { - int i, attrind; + size_t i; + int attrind; int first = -1; for (i = 0; i < countof (tag_url_attributes); i++) @@ -387,7 +388,7 @@ tag_find_urls (int tagid, struct taginfo *tag, struct map_context *ctx) /* Find whether TAG/ATTRIND is a combination that contains a URL. */ char *link = tag->attrs[attrind].value; - const int size = countof (tag_url_attributes); + const size_t size = countof (tag_url_attributes); /* If you're cringing at the inefficiency of the nested loops, remember that they both iterate over a very small number of