From b018d6e84f29744c9e562f0ac7a47ecff275229d Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 5 Aug 2008 20:50:53 +0000 Subject: [PATCH] * oops, fix build break from last checkin --- .../Common/ScriptEngineBase/EventQueueThreadClass.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs index 3a5cc23fef..dabb1289ec 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 { line = " at line " + Convert.ToInt32(t.Substring(colon + 6)).ToString(); } - catch (ArgumentOutOfRangeException e) + catch (ArgumentOutOfRangeException e2) { // FIXME: Big fat temporary patch to stop the Substring above throwing an exception // and stopping a proper kill of the script. We're making an unwarranted assumption // about the size of t. This needs to be fixed properly. - m_log.ErrorFormat("[SCRIPT ENGINE]: Line number conversion exception {0}", e); + m_log.ErrorFormat("[SCRIPT ENGINE]: Error line number conversion exception {0}", e2); line = " at line (unavailable)"; }