aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-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");