fix windows isspace issue

This commit is contained in:
Arvid Norberg 2011-06-22 01:17:22 +00:00
parent 4d950285d1
commit fdd2482536
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ namespace libtorrent
}
// parse the name of the tag.
for (start = p; p != end && *p != '>' && !isspace(*p); ++p);
for (start = p; p != end && *p != '>' && !is_space(*p); ++p);
char* tag_name_end = p;