diff options
author | Kevin Cozens | 2017-10-26 13:29:14 -0400 |
---|---|---|
committer | Kevin Cozens | 2017-10-26 13:29:14 -0400 |
commit | fbb2f7f319125fc7abb4f521153ab937e222d3ce (patch) | |
tree | 4bf17baa54fdebf66f087cf0e3086e95a555ce69 /OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |
parent | Whitespace cleanup. (diff) | |
download | opensim-SC-fbb2f7f319125fc7abb4f521153ab937e222d3ce.zip opensim-SC-fbb2f7f319125fc7abb4f521153ab937e222d3ce.tar.gz opensim-SC-fbb2f7f319125fc7abb4f521153ab937e222d3ce.tar.bz2 opensim-SC-fbb2f7f319125fc7abb4f521153ab937e222d3ce.tar.xz |
Corrected name of function in call to CheckThreatLevel.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 2 |
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 | ||