diff options
author | Christian Goetze (CG) <cg@lindenlab.com> | 2010-11-05 17:59:50 -0700 |
---|---|---|
committer | Christian Goetze (CG) <cg@lindenlab.com> | 2010-11-05 17:59:50 -0700 |
commit | fdbc78b0bcd2fe2caec61a2161dc64c9d46a0c3b (patch) | |
tree | 4c79c9a5d0c36db0434ae517253e51c3c5788f47 | |
parent | bc7b6411d9148f918be3f781c55459d044288b6a (diff) |
Fix type mismatch in loop variable.
-rw-r--r-- | indra/newview/llvocache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvocache.cpp b/indra/newview/llvocache.cpp index 34e9babe2c..b1c6ea26cc 100644 --- a/indra/newview/llvocache.cpp +++ b/indra/newview/llvocache.cpp @@ -479,7 +479,7 @@ void LLVOCache::writeCacheHeader() if(mNumEntries < mCacheSize) { HeaderEntryInfo* entry = new HeaderEntryInfo() ; - for(S32 i = mNumEntries ; i < mCacheSize; i++) + for(U32 i = mNumEntries ; i < mCacheSize; i++) { //fill the cache with the default entry. if(!checkWrite(apr_file, entry, sizeof(HeaderEntryInfo))) |