mantis 8346: fix argument of osUnixTimeToTimestamp

0.9.1.0-post-fixes
UbitUmarov 2018-07-27 14:20:59 +01:00
parent 1b5c6c48f9
commit a6d5da3e7f
3 changed files with 3 additions and 3 deletions

View File

@ -3839,7 +3839,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
/// </summary>
/// <param name="unixTime"></param>
/// <returns></returns>
public LSL_String osUnixTimeToTimestamp(long time)
public LSL_String osUnixTimeToTimestamp(LSL_Integer time)
{
CheckThreatLevel(ThreatLevel.VeryLow, "osUnixTimeToTimestamp");

View File

@ -398,7 +398,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
LSL_List osGetAvatarList();
LSL_List osGetNPCList();
LSL_String osUnixTimeToTimestamp(long time);
LSL_String osUnixTimeToTimestamp(LSL_Integer time);
LSL_String osGetInventoryDesc(string item);

View File

@ -1051,7 +1051,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_OSSL_Functions.osGetNPCList();
}
public LSL_String osUnixTimeToTimestamp(long time)
public LSL_String osUnixTimeToTimestamp(LSL_Integer time)
{
return m_OSSL_Functions.osUnixTimeToTimestamp(time);
}