diff --git a/indra/newview/llfloaterchat.cpp b/indra/newview/llfloaterchat.cpp index af37749c9..dec68245d 100644 --- a/indra/newview/llfloaterchat.cpp +++ b/indra/newview/llfloaterchat.cpp @@ -683,7 +683,8 @@ void LLFloaterChat::onClickToggleActiveSpeakers(void* userdata) void LLFloaterChat::onClickChatHistoryOpen(void* userdata) { char command[256]; - sprintf(command, "\"%s\\%s\"", gDirUtilp->getPerAccountChatLogsDir().c_str(), "chat.txt"); + + sprintf(command, "\"%s%s%s\"", gDirUtilp->getPerAccountChatLogsDir().c_str(), gDirUtilp->getDirDelimiter().c_str(), "chat.txt"); gViewerWindow->getWindow()->ShellEx(command); llinfos << command << llendl;