diff options
author | Ricky Curtice <kf6kjg+hg@gmail.com> | 2014-03-13 20:36:05 -0700 |
---|---|---|
committer | Ricky Curtice <kf6kjg+hg@gmail.com> | 2014-03-13 20:36:05 -0700 |
commit | e9116575bfd2238e80eaac08bceb8f797d0e933c (patch) | |
tree | 62e37ff6cc214165942f9dca8429f766f4e6123e /indra/llvfs/llvfile.cpp | |
parent | cb91708332b8b8ddfe27808602ec5f43f11c24c2 (diff) |
OPEN-209: Corrected all instances of trigraphs in the code.
Trigraphs can cause some real special headaches. The only part that's annoying is the comment in newview/llimview.cpp where there's an unfortunate collision of a trigraph sequence with a character sequence that could be displayed by the viewer. Thankfully, it's only a comment!
Diffstat (limited to 'indra/llvfs/llvfile.cpp')
-rwxr-xr-x | indra/llvfs/llvfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llvfs/llvfile.cpp b/indra/llvfs/llvfile.cpp index 306d7d8ec7..983e7c3b59 100755 --- a/indra/llvfs/llvfile.cpp +++ b/indra/llvfs/llvfile.cpp @@ -104,7 +104,7 @@ BOOL LLVFile::read(U8 *buffer, S32 bytes, BOOL async, F32 priority) // We can't do a read while there are pending async writes waitForLock(VFSLOCK_APPEND); - // *FIX: (???) + // *FIX: (?) if (async) { mHandle = sVFSThread->read(mVFS, mFileID, mFileType, buffer, mPosition, bytes, threadPri()); |