Skip to content
Snippets Groups Projects
Commit fdbc78b0 authored by Christian Goetze (CG)'s avatar Christian Goetze (CG)
Browse files

Fix type mismatch in loop variable.

parent bc7b6411
No related branches found
No related tags found
No related merge requests found
......@@ -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)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment