summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2017-05-02 14:39:59 -0400
committerNat Goodspeed <nat@lindenlab.com>2017-05-02 14:39:59 -0400
commite4996c5d8182a0ef24f0eb445db82121fe5733d7 (patch)
tree84a1c2b9c1f8b0cae667a6c0c8458c19c921a0b8 /indra/newview
parent2bb19aec989d5964b22f64cc01aa7cbe962e1e6b (diff)
DRTVWR-418, MAINT-6996: clarify divide-by-1024 (not shift-right 10)
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llappviewer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index e4b2c7ad77..d41f33700f 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -3745,7 +3745,7 @@ void LLAppViewer::handleViewerCrash()
}
gDebugInfo["Dynamic"]["SessionLength"] = F32(LLFrameTimer::getElapsedSeconds());
- gDebugInfo["Dynamic"]["RAMInfo"]["Allocated"] = LLSD::Integer(LLMemory::getCurrentRSS() >> 10);
+ gDebugInfo["Dynamic"]["RAMInfo"]["Allocated"] = LLSD::Integer(LLMemory::getCurrentRSS() / 1024);
if(gLogoutInProgress)
{