From c284c86c88d0a78974ce6755cf05fb8327ff2861 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Wed, 3 Mar 2021 19:34:30 -0500 Subject: [PATCH] Fixing another linux build error --- indra/llfilesystem/lldiskcache.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/llfilesystem/lldiskcache.cpp b/indra/llfilesystem/lldiskcache.cpp index 5134870d36a..3b5fa8bc804 100644 --- a/indra/llfilesystem/lldiskcache.cpp +++ b/indra/llfilesystem/lldiskcache.cpp @@ -78,7 +78,7 @@ void LLDiskCache::purge() #if LL_WINDOWS std::wstring cache_path(ll_convert_string_to_wide(sCacheDir)); #else - std::string cache_path(mCacheDir); + std::string cache_path(sCacheDir); #endif if (boost::filesystem::is_directory(cache_path)) { @@ -214,7 +214,7 @@ void LLDiskCache::clearCache() #if LL_WINDOWS boost::filesystem::path cache_path(ll_convert_string_to_wide(sCacheDir)); #else - boost::filesystem::path cache_path(mCacheDir); + boost::filesystem::path cache_path(sCacheDir); #endif if (boost::filesystem::is_directory(cache_path)) { -- GitLab