aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKevin Cozens2017-10-26 13:29:14 -0400
committerKevin Cozens2017-10-26 13:29:14 -0400
commitfbb2f7f319125fc7abb4f521153ab937e222d3ce (patch)
tree4bf17baa54fdebf66f087cf0e3086e95a555ce69
parentWhitespace cleanup. (diff)
downloadopensim-SC_OLD-fbb2f7f319125fc7abb4f521153ab937e222d3ce.zip
opensim-SC_OLD-fbb2f7f319125fc7abb4f521153ab937e222d3ce.tar.gz
opensim-SC_OLD-fbb2f7f319125fc7abb4f521153ab937e222d3ce.tar.bz2
opensim-SC_OLD-fbb2f7f319125fc7abb4f521153ab937e222d3ce.tar.xz
Corrected name of function in call to CheckThreatLevel.
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
index cdeb117..6e28fe0 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
@@ -3593,7 +3593,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
3593 3593
3594 public int osGetSimulatorMemoryKB() 3594 public int osGetSimulatorMemoryKB()
3595 { 3595 {
3596 CheckThreatLevel(ThreatLevel.Moderate, "osGetSimulatorMemory"); 3596 CheckThreatLevel(ThreatLevel.Moderate, "osGetSimulatorMemoryKB");
3597 3597
3598 long pws = System.Diagnostics.Process.GetCurrentProcess().WorkingSet64; 3598 long pws = System.Diagnostics.Process.GetCurrentProcess().WorkingSet64;
3599 3599