diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llvfs/lllfsthread.cpp | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llvfs/lllfsthread.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/linden/indra/llvfs/lllfsthread.cpp b/linden/indra/llvfs/lllfsthread.cpp index 4510392..7dce4d9 100644 --- a/linden/indra/llvfs/lllfsthread.cpp +++ b/linden/indra/llvfs/lllfsthread.cpp | |||
@@ -30,7 +30,6 @@ | |||
30 | */ | 30 | */ |
31 | 31 | ||
32 | #include "linden_common.h" | 32 | #include "linden_common.h" |
33 | #include "llmath.h" | ||
34 | #include "lllfsthread.h" | 33 | #include "lllfsthread.h" |
35 | #include "llstl.h" | 34 | #include "llstl.h" |
36 | #include "llapr.h" | 35 | #include "llapr.h" |
@@ -82,7 +81,7 @@ LLLFSThread::~LLLFSThread() | |||
82 | 81 | ||
83 | //---------------------------------------------------------------------------- | 82 | //---------------------------------------------------------------------------- |
84 | 83 | ||
85 | LLLFSThread::handle_t LLLFSThread::read(const LLString& filename, /* Flawfinder: ignore */ | 84 | LLLFSThread::handle_t LLLFSThread::read(const std::string& filename, /* Flawfinder: ignore */ |
86 | U8* buffer, S32 offset, S32 numbytes, | 85 | U8* buffer, S32 offset, S32 numbytes, |
87 | Responder* responder, U32 priority) | 86 | Responder* responder, U32 priority) |
88 | { | 87 | { |
@@ -105,7 +104,7 @@ LLLFSThread::handle_t LLLFSThread::read(const LLString& filename, /* Flawfinder: | |||
105 | return handle; | 104 | return handle; |
106 | } | 105 | } |
107 | 106 | ||
108 | LLLFSThread::handle_t LLLFSThread::write(const LLString& filename, | 107 | LLLFSThread::handle_t LLLFSThread::write(const std::string& filename, |
109 | U8* buffer, S32 offset, S32 numbytes, | 108 | U8* buffer, S32 offset, S32 numbytes, |
110 | Responder* responder, U32 priority) | 109 | Responder* responder, U32 priority) |
111 | { | 110 | { |
@@ -131,7 +130,7 @@ LLLFSThread::handle_t LLLFSThread::write(const LLString& filename, | |||
131 | 130 | ||
132 | LLLFSThread::Request::Request(LLLFSThread* thread, | 131 | LLLFSThread::Request::Request(LLLFSThread* thread, |
133 | handle_t handle, U32 priority, | 132 | handle_t handle, U32 priority, |
134 | operation_t op, const LLString& filename, | 133 | operation_t op, const std::string& filename, |
135 | U8* buffer, S32 offset, S32 numbytes, | 134 | U8* buffer, S32 offset, S32 numbytes, |
136 | Responder* responder) : | 135 | Responder* responder) : |
137 | QueuedRequest(handle, priority, FLAG_AUTO_COMPLETE), | 136 | QueuedRequest(handle, priority, FLAG_AUTO_COMPLETE), |