From 7e65212ed32cfa26c58c4c8fc957e2f6c3fb6d86 Mon Sep 17 00:00:00 2001 From: "Eric J. Korpela" Date: Mon, 31 Jan 2005 18:22:19 +0000 Subject: [PATCH] Fixed typo svn path=/trunk/boinc/; revision=5250 --- lib/parse.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/parse.C b/lib/parse.C index 82f6d41e5f..68b06c6445 100644 --- a/lib/parse.C +++ b/lib/parse.C @@ -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];