From 6d1e9ee3d47d9c6ba5268cb2f3b3df119d456cec Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Wed, 27 Mar 2019 19:52:01 -0400 Subject: [PATCH] Fix Linux, Thanks Bitten --- indra/newview/llavataractions.cpp | 2 +- indra/newview/llgroupactions.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index ecf14398e..0a6b4db21 100644 --- a/indra/newview/llavataractions.cpp +++ b/indra/newview/llavataractions.cpp @@ -1270,5 +1270,5 @@ void LLAvatarActions::copyUUIDs(const uuid_vec_t& ids) std::string LLAvatarActions::getSLURL(const LLUUID& id) { - return llformat("secondlife:///app/agent/%s/about", id.asString()); + return llformat("secondlife:///app/agent/%s/about", id.asString().c_str()); } diff --git a/indra/newview/llgroupactions.cpp b/indra/newview/llgroupactions.cpp index b8763f00b..317998558 100644 --- a/indra/newview/llgroupactions.cpp +++ b/indra/newview/llgroupactions.cpp @@ -603,6 +603,6 @@ LLFloaterGroupInfo* LLGroupActions::openGroupProfile(const LLUUID& group_id) std::string LLGroupActions::getSLURL(const LLUUID& id) { - return llformat("secondlife:///app/group/%s/about", id.asString()); + return llformat("secondlife:///app/group/%s/about", id.asString().c_str()); }