userlibandfileserver/fileserver/sfat32/sl_fatcache.cpp
branchRCL_3
changeset 42 a179b74831c9
parent 22 2f92ad2dc5db
equal deleted inserted replaced
41:0ffb4e86fcc9 42:a179b74831c9
   347     const TUint numPages = (aFatSize+(PageSize()-1)) >> iPageSizeLog2;
   347     const TUint numPages = (aFatSize+(PageSize()-1)) >> iPageSizeLog2;
   348     __PRINT1(_L("#-CFat16FixedCache Num Pages:%d"), numPages);
   348     __PRINT1(_L("#-CFat16FixedCache Num Pages:%d"), numPages);
   349 
   349 
   350     //-- prepare pointer array for pages. NULL entry in the array means that the page at this index isn't allocated.
   350     //-- prepare pointer array for pages. NULL entry in the array means that the page at this index isn't allocated.
   351     for(TUint i=0; i<numPages; ++i)
   351     for(TUint i=0; i<numPages; ++i)
   352         iPages.Append(NULL);
   352         iPages.AppendL(NULL);
   353     
   353     
   354     }
   354     }
   355 
   355 
   356 
   356 
   357 //-----------------------------------------------------------------------------
   357 //-----------------------------------------------------------------------------