diff options
author | Cosmic Linden <cosmic@lindenlab.com> | 2024-10-07 15:57:50 -0700 |
---|---|---|
committer | Cosmic Linden <cosmic@lindenlab.com> | 2024-10-11 10:39:23 -0700 |
commit | d505eb4fce23e573c5155d1a9ba2857f549ca281 (patch) | |
tree | c25ef7af7384a31a77af0d9d8685d68b793357f1 /indra/newview/llterrainpaintmap.cpp | |
parent | 303bf1977b802f5a091bec66b65dfb6c2f29b761 (diff) |
secondlife/viewer#1883: Fix logic error caught by clang
Diffstat (limited to 'indra/newview/llterrainpaintmap.cpp')
-rw-r--r-- | indra/newview/llterrainpaintmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llterrainpaintmap.cpp b/indra/newview/llterrainpaintmap.cpp index ec40f299a4..09caba8faa 100644 --- a/indra/newview/llterrainpaintmap.cpp +++ b/indra/newview/llterrainpaintmap.cpp @@ -846,7 +846,7 @@ bool LLTerrainQueue<T>::enqueue(std::vector<std::shared_ptr<T>>& list) constexpr bool dry_run = true; for (auto& t : list) { - if (!enqueue(t), dry_run) { return false; } + if (!enqueue(t, dry_run)) { return false; } } for (auto& t : list) { |