diff options
author | Brad Kittenbrink <brad@lindenlab.com> | 2022-11-11 17:07:52 -0800 |
---|---|---|
committer | Brad Kittenbrink <brad@lindenlab.com> | 2022-11-11 17:07:52 -0800 |
commit | 22f6adefb892ab83168e6236e2453b62314d0db6 (patch) | |
tree | a04d75a4f36aab8252f830203e6497a123903ded /indra/newview/lltexturecache.cpp | |
parent | 6bc0614d717166e1e587012c3388445d662775a3 (diff) |
DRTVWR-575 fix LLWorkerThread subclasses to be compatiblie with recent size_t changes in base class
Diffstat (limited to 'indra/newview/lltexturecache.cpp')
-rw-r--r-- | indra/newview/lltexturecache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lltexturecache.cpp b/indra/newview/lltexturecache.cpp index 9403e73b87..67da311493 100644 --- a/indra/newview/lltexturecache.cpp +++ b/indra/newview/lltexturecache.cpp @@ -859,12 +859,12 @@ LLTextureCache::~LLTextureCache() ////////////////////////////////////////////////////////////////////////////// //virtual -S32 LLTextureCache::update(F32 max_time_ms) +size_t LLTextureCache::update(F32 max_time_ms) { static LLFrameTimer timer ; static const F32 MAX_TIME_INTERVAL = 300.f ; //seconds. - S32 res; + size_t res; res = LLWorkerThread::update(max_time_ms); mListMutex.lock(); |