Slight typo

This commit is contained in:
CoolerExtreme
2015-02-13 06:37:37 +05:30
parent f28d2eef88
commit 011e1b3ebd

View File

@@ -77,7 +77,7 @@ static inline std::string parseString(const char*& token)
std::string s;
token += strspn(token, " \t");
int e = strcspn(token, " \t\r");
s = std::string(&token, &token[e]);
s = std::string(token, &token[e]);
token += e;
return s;
}