diff options
author | Josh Bell <josh@lindenlab.com> | 2007-06-22 20:56:24 +0000 |
---|---|---|
committer | Josh Bell <josh@lindenlab.com> | 2007-06-22 20:56:24 +0000 |
commit | 723547602545542e6c23c458bb2842cc30ad3a87 (patch) | |
tree | fb921e7c0e76cb8cdf6c568371f5ab227693f7b9 /indra/llmessage | |
parent | dd247cbad58d7e740e2568f9ac9f5ee1d30f00d7 (diff) |
Tweak initializer order to silence a gcc warning (now treated as error)
Diffstat (limited to 'indra/llmessage')
-rw-r--r-- | indra/llmessage/llassetstorage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llassetstorage.cpp b/indra/llmessage/llassetstorage.cpp index 2f489608e7..911e073fb6 100644 --- a/indra/llmessage/llassetstorage.cpp +++ b/indra/llmessage/llassetstorage.cpp @@ -142,9 +142,9 @@ LLAssetRequest::LLAssetRequest(const LLUUID &uuid, const LLAssetType::EType type mHost(), mIsTemp( FALSE ), mIsLocal(FALSE), - mIsPriority(FALSE), mIsUserWaiting(FALSE), mTimeout(LL_ASSET_STORAGE_TIMEOUT), + mIsPriority(FALSE), mDataSentInFirstPacket(FALSE), mDataIsInVFS( FALSE ) { |