equal
deleted
inserted
replaced
1759 Write EOF to aFatIndex |
1759 Write EOF to aFatIndex |
1760 @param aFatIndex index in FAT (cluster number) to be written |
1760 @param aFatIndex index in FAT (cluster number) to be written |
1761 */ |
1761 */ |
1762 void CFatTable::WriteFatEntryEofL(TUint32 aFatIndex) |
1762 void CFatTable::WriteFatEntryEofL(TUint32 aFatIndex) |
1763 { |
1763 { |
1764 __PRINT1(_L("CAtaFatTable::WriteFatEntryEofL(%d)"), aFatIndex); |
1764 __PRINT1(_L("CFatTable::WriteFatEntryEofL(%d)"), aFatIndex); |
1765 |
1765 |
1766 //-- use EOF_32Bit (0x0fffffff) for all types of FAT, FAT cache will mask it appropriately |
1766 //-- use EOF_32Bit (0x0fffffff) for all types of FAT, FAT cache will mask it appropriately |
1767 WriteL(aFatIndex, EOF_32Bit); |
1767 WriteL(aFatIndex, EOF_32Bit); |
1768 } |
1768 } |
1769 |
1769 |