added missing line when exporting ChatID to std::string (fix by sehraf)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7855 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2015-01-22 15:57:24 +00:00
parent 32c9fe7eca
commit d886c34233

View File

@ -150,6 +150,8 @@ std::string ChatId::toStdString() const
std::cerr << "ChatId::toStdString() Error: sizeof(ChatLobbyId) != 8. please report this" << std::endl;
return "";
}
str += "L";
ChatLobbyId id = lobby_id;
for(int i = 0; i<16; i++)
{