Fixed typo

svn path=/trunk/boinc/; revision=5250
This commit is contained in:
Eric J. Korpela 2005-01-31 18:22:19 +00:00
parent 99becce034
commit 7e65212ed3
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ void xml_unescape(string& in, string& out) {
char c = atoi(in.substr(i+2, 3).c_str());
out += c;
i = in.find(";", i);
if (i==std::string.npos) break;
if (i==std::string::npos) break;
i++;
} else {
out += in[i];