Small fix to a cast in list parsing

0.6.0-stable
Melanie Thielker 2008-09-02 14:08:15 +00:00
parent 930b2ec602
commit 52a5425628
1 changed files with 1 additions and 1 deletions

View File

@ -4436,7 +4436,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
if ((cindex > index) || (cindex == -1))
{
cindex = index;
cdeli = (string)delimiters[i];
cdeli = delimiters[i].ToString();
}
dfound = dfound || found;
}