aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities/LLSD.cs
diff options
context:
space:
mode:
authorUbitUmarov2017-07-13 04:28:35 +0100
committerUbitUmarov2017-07-13 04:28:35 +0100
commita17abe7518b301a52307193dbd311e985b237af9 (patch)
tree89cc7dd95cb264df00534a4aa9931bf83ac5f5bf /OpenSim/Capabilities/LLSD.cs
parentreplace the wrong libOMV user modifiable Utils.EnUSCulture by our own no User... (diff)
downloadopensim-SC_OLD-a17abe7518b301a52307193dbd311e985b237af9.zip
opensim-SC_OLD-a17abe7518b301a52307193dbd311e985b237af9.tar.gz
opensim-SC_OLD-a17abe7518b301a52307193dbd311e985b237af9.tar.bz2
opensim-SC_OLD-a17abe7518b301a52307193dbd311e985b237af9.tar.xz
typo fix
Diffstat (limited to 'OpenSim/Capabilities/LLSD.cs')
-rw-r--r--OpenSim/Capabilities/LLSD.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Capabilities/LLSD.cs b/OpenSim/Capabilities/LLSD.cs
index 8f3cab7..76e439f 100644
--- a/OpenSim/Capabilities/LLSD.cs
+++ b/OpenSim/Capabilities/LLSD.cs
@@ -566,7 +566,7 @@ namespace OpenSim.Framework.Capabilities
566 endPos = FindEnd(llsd, 1); 566 endPos = FindEnd(llsd, 1);
567 567
568 if (Double.TryParse(llsd.Substring(1, endPos - 1), NumberStyles.Float, 568 if (Double.TryParse(llsd.Substring(1, endPos - 1), NumberStyles.Float,
569 Culture.FormatProvider.NumberFormat, out value)) 569 Culture.NumberFormatInfo, out value))
570 return value; 570 return value;
571 else 571 else
572 throw new LLSDParseException("Failed to parse double value type"); 572 throw new LLSDParseException("Failed to parse double value type");