diff options
Diffstat (limited to 'linden/indra/llvfs/llvfs.h')
-rw-r--r-- | linden/indra/llvfs/llvfs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/llvfs/llvfs.h b/linden/indra/llvfs/llvfs.h index e07e85a..7465bb4 100644 --- a/linden/indra/llvfs/llvfs.h +++ b/linden/indra/llvfs/llvfs.h | |||
@@ -131,8 +131,8 @@ protected: | |||
131 | void sync(LLVFSFileBlock *block, BOOL remove = FALSE); | 131 | void sync(LLVFSFileBlock *block, BOOL remove = FALSE); |
132 | void presizeDataFile(const U32 size); | 132 | void presizeDataFile(const U32 size); |
133 | 133 | ||
134 | static FILE *openAndLock(const char *filename, const char *mode, BOOL read_lock); | 134 | static LLFILE *openAndLock(const char *filename, const char *mode, BOOL read_lock); |
135 | static void unlockAndClose(FILE *fp); | 135 | static void unlockAndClose(LLFILE *fp); |
136 | 136 | ||
137 | // Can initiate LRU-based file removal to make space. | 137 | // Can initiate LRU-based file removal to make space. |
138 | // The immune file block will not be removed. | 138 | // The immune file block will not be removed. |
@@ -153,8 +153,8 @@ protected: | |||
153 | typedef std::multimap<U32, LLVFSBlock*> blocks_location_map_t; | 153 | typedef std::multimap<U32, LLVFSBlock*> blocks_location_map_t; |
154 | blocks_location_map_t mFreeBlocksByLocation; | 154 | blocks_location_map_t mFreeBlocksByLocation; |
155 | 155 | ||
156 | FILE *mDataFP; | 156 | LLFILE *mDataFP; |
157 | FILE *mIndexFP; | 157 | LLFILE *mIndexFP; |
158 | 158 | ||
159 | std::deque<S32> mIndexHoles; | 159 | std::deque<S32> mIndexHoles; |
160 | 160 | ||