Core: Append single character to stream as character, not as a string

This commit is contained in:
Spp-
2011-07-29 14:18:28 +02:00
parent 06b46ba203
commit e47b96af3e
70 changed files with 432 additions and 424 deletions

View File

@@ -46,7 +46,7 @@ void RealmList::UpdateRealm(uint32 ID, const std::string& name, const std::strin
// Append port to IP address.
std::ostringstream ss;
ss << address << ":" << port;
ss << address << ':' << port;
realm.address = ss.str();
realm.gamebuild = build;
}