summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2020-07-31 00:14:14 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2020-07-31 00:14:14 +0300
commite8422ec9d74e06ca7d2405a89d0e50adab1a36b0 (patch)
treefdd75af94d32009909b8ee0b5b7f6cc33db4e4ab /indra
parent135a85ec62d1bf437ec2d6f485e33e9ceb0c71ab (diff)
SL-13626 Fixed spelling error
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llviewerassetstorage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llviewerassetstorage.cpp b/indra/newview/llviewerassetstorage.cpp
index 22269a9208..b295fa2977 100644
--- a/indra/newview/llviewerassetstorage.cpp
+++ b/indra/newview/llviewerassetstorage.cpp
@@ -49,7 +49,7 @@
/// LLViewerAssetRequest
///----------------------------------------------------------------------------
-static const std::string VIEWER_ASSET_STROTRAGE_CORO_POOL = "VAssetStorage";
+static const std::string VIEWER_ASSET_STORAGE_CORO_POOL = "VAssetStorage";
/**
* @brief Local class to encapsulate asset fetch requests with a timestamp.
@@ -134,7 +134,7 @@ LLViewerAssetStorage::~LLViewerAssetStorage()
if (!LLCoprocedureManager::wasDeleted())
{
// This class has dedicated coroutine pool, clean it up, otherwise coroutines will crash later.
- LLCoprocedureManager::instance().close(VIEWER_ASSET_STROTRAGE_CORO_POOL);
+ LLCoprocedureManager::instance().close(VIEWER_ASSET_STORAGE_CORO_POOL);
}
}
@@ -410,7 +410,7 @@ void LLViewerAssetStorage::queueRequestHttp(
bool is_temp = false;
LLViewerAssetStatsFF::record_enqueue(atype, with_http, is_temp);
- LLCoprocedureManager::instance().enqueueCoprocedure(VIEWER_ASSET_STROTRAGE_CORO_POOL,"LLViewerAssetStorage::assetRequestCoro",
+ LLCoprocedureManager::instance().enqueueCoprocedure(VIEWER_ASSET_STORAGE_CORO_POOL,"LLViewerAssetStorage::assetRequestCoro",
boost::bind(&LLViewerAssetStorage::assetRequestCoro, this, req, uuid, atype, callback, user_data));
}
}