Skip to content

Commit

Permalink
Fix small typo (std:cerr -> std::cerr)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Oct 9, 2016
1 parent bcbfd00 commit 09945ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TileGenerator.cpp
Expand Up @@ -280,7 +280,7 @@ void TileGenerator::parseColorsStream(std::istream &in)
t = 0;
int items = sscanf(line, "%64s %u %u %u %u %u", name, &r, &g, &b, &a, &t);
if(items < 4) {
std:cerr << "Failed to parse color entry '" << line << "'." << std::endl;
std::cerr << "Failed to parse color entry '" << line << "'" << std::endl;
continue;
}

Expand Down

0 comments on commit 09945ca

Please sign in to comment.