mantis 8346: fix argument of osUnixTimeToTimestamp
parent
1b5c6c48f9
commit
a6d5da3e7f
|
@ -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");
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue