aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_Types.cs2
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
index 5bfe8bf..bff2101 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
@@ -1373,7 +1373,7 @@ namespace OpenSim.Region.ScriptEngine.Common
1373 value = int.Parse(v, System.Globalization.NumberStyles.Integer); 1373 value = int.Parse(v, System.Globalization.NumberStyles.Integer);
1374 } 1374 }
1375 } 1375 }
1376 catch (OverflowException oe) 1376 catch (OverflowException)
1377 { 1377 {
1378 value = -1; 1378 value = -1;
1379 } 1379 }
diff --git a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs
index d107d90..b8d72e0 100644
--- a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs
@@ -1455,7 +1455,7 @@ namespace OpenSim.Region.ScriptEngine.Shared
1455 value = int.Parse(v, 1455 value = int.Parse(v,
1456 System.Globalization.NumberStyles.Integer); 1456 System.Globalization.NumberStyles.Integer);
1457 } 1457 }
1458 catch (OverflowException oe) 1458 catch (OverflowException)
1459 { 1459 {
1460 value = -1; 1460 value = -1;
1461 } 1461 }