diff options
author | Justin Clarke Casey | 2008-08-05 20:50:53 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-08-05 20:50:53 +0000 |
commit | b018d6e84f29744c9e562f0ac7a47ecff275229d (patch) | |
tree | 75d0730a0305f53bc4c9a01b4e42e8ff3a3e2710 /OpenSim/Region/ScriptEngine | |
parent | * possible fix for event queue problems (exceptions and event count max excee... (diff) | |
download | opensim-SC_OLD-b018d6e84f29744c9e562f0ac7a47ecff275229d.zip opensim-SC_OLD-b018d6e84f29744c9e562f0ac7a47ecff275229d.tar.gz opensim-SC_OLD-b018d6e84f29744c9e562f0ac7a47ecff275229d.tar.bz2 opensim-SC_OLD-b018d6e84f29744c9e562f0ac7a47ecff275229d.tar.xz |
* oops, fix build break from last checkin
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs index 3a5cc23..dabb128 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs | |||
@@ -321,12 +321,12 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
321 | { | 321 | { |
322 | line = " at line " + Convert.ToInt32(t.Substring(colon + 6)).ToString(); | 322 | line = " at line " + Convert.ToInt32(t.Substring(colon + 6)).ToString(); |
323 | } | 323 | } |
324 | catch (ArgumentOutOfRangeException e) | 324 | catch (ArgumentOutOfRangeException e2) |
325 | { | 325 | { |
326 | // FIXME: Big fat temporary patch to stop the Substring above throwing an exception | 326 | // FIXME: Big fat temporary patch to stop the Substring above throwing an exception |
327 | // and stopping a proper kill of the script. We're making an unwarranted assumption | 327 | // and stopping a proper kill of the script. We're making an unwarranted assumption |
328 | // about the size of t. This needs to be fixed properly. | 328 | // about the size of t. This needs to be fixed properly. |
329 | m_log.ErrorFormat("[SCRIPT ENGINE]: Line number conversion exception {0}", e); | 329 | m_log.ErrorFormat("[SCRIPT ENGINE]: Error line number conversion exception {0}", e2); |
330 | line = " at line (unavailable)"; | 330 | line = " at line (unavailable)"; |
331 | } | 331 | } |
332 | 332 | ||