diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-20 10:40:44 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-20 10:40:44 -0800 |
commit | 89f460cc9edcdf5651295748da34b842388e7a8b (patch) | |
tree | 7501d5a944d65103f77f0faec8bd563f92163719 | |
parent | f38fa6a7357a91fcede3713cfce4971f0b0d5dfa (diff) |
fix build error from PE tree.
-rw-r--r-- | indra/newview/lllandmarklist.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/lllandmarklist.cpp b/indra/newview/lllandmarklist.cpp index 355f048308..ce84474c05 100644 --- a/indra/newview/lllandmarklist.cpp +++ b/indra/newview/lllandmarklist.cpp @@ -59,7 +59,8 @@ LLLandmark* LLLandmarkList::getAsset(const LLUUID& asset_uuid, loaded_callback_t LLLandmark* landmark = get_ptr_in_map(mList, asset_uuid); if(landmark) { - if(cb && !landmark->getGlobalPos(LLVector3d())) + LLVector3d dummy; + if(cb && !landmark->getGlobalPos(dummy)) { // landmark is not completely loaded yet loaded_callback_map_t::value_type vt(asset_uuid, cb); |