diff options
author | Spp- <u84280@epreinf21.(none)> | 2011-07-29 14:18:28 +0200 |
---|---|---|
committer | Spp- <u84280@epreinf21.(none)> | 2011-07-29 14:18:28 +0200 |
commit | e47b96af3e3a41eae71e3e3da7eeee8bd3de86bc (patch) | |
tree | 07d5ff1e6e39d792dbe1a89cc373c06702817787 /src/server/game/Pools/PoolMgr.cpp | |
parent | 06b46ba203d30cc5e2abc9741b2fc737ebdd7c38 (diff) |
Core: Append single character to stream as character, not as a string
Diffstat (limited to 'src/server/game/Pools/PoolMgr.cpp')
-rwxr-xr-x | src/server/game/Pools/PoolMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Pools/PoolMgr.cpp b/src/server/game/Pools/PoolMgr.cpp index 1c239fc0438..e77639060aa 100755 --- a/src/server/game/Pools/PoolMgr.cpp +++ b/src/server/game/Pools/PoolMgr.cpp @@ -790,7 +790,7 @@ void PoolMgr::LoadFromDB() std::ostringstream ss; ss<< "The pool(s) "; for (std::set<uint32>::const_iterator itr=checkedPools.begin(); itr != checkedPools.end(); ++itr) - ss << *itr << " "; + ss << *itr << ' '; ss << "create(s) a circular reference, which can cause the server to freeze.\nRemoving the last link between mother pool " << poolItr->first << " and child pool " << poolItr->second; sLog->outErrorDb("%s", ss.str().c_str()); |