diff options
author | Jeff Ames | 2008-01-11 21:08:37 +0000 |
---|---|---|
committer | Jeff Ames | 2008-01-11 21:08:37 +0000 |
commit | ef674acc245785ddf757c6b8f3b7765ff7905a54 (patch) | |
tree | eb1ccb01c0725a71d21b27d9463c6a84b5701d09 /OpenSim/Region/ScriptEngine | |
parent | Fill out and add wiki link to OpenSim.ini.example for prim inventory persistence (diff) | |
download | opensim-SC_OLD-ef674acc245785ddf757c6b8f3b7765ff7905a54.zip opensim-SC_OLD-ef674acc245785ddf757c6b8f3b7765ff7905a54.tar.gz opensim-SC_OLD-ef674acc245785ddf757c6b8f3b7765ff7905a54.tar.bz2 opensim-SC_OLD-ef674acc245785ddf757c6b8f3b7765ff7905a54.tar.xz |
Fix some warnings under mono.
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs index 0ad10cc..b7fe241 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | |||
@@ -2372,7 +2372,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler | |||
2372 | public void llSetParcelMusicURL(string url) | 2372 | public void llSetParcelMusicURL(string url) |
2373 | { | 2373 | { |
2374 | LLUUID landowner = World.GetLandOwner(m_host.AbsolutePosition.X, m_host.AbsolutePosition.Y); | 2374 | LLUUID landowner = World.GetLandOwner(m_host.AbsolutePosition.X, m_host.AbsolutePosition.Y); |
2375 | if (landowner == null) | 2375 | if (landowner.Equals(null)) |
2376 | { | 2376 | { |
2377 | return; | 2377 | return; |
2378 | } | 2378 | } |
@@ -2779,7 +2779,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler | |||
2779 | LLUUID reqID = httpScriptMod. | 2779 | LLUUID reqID = httpScriptMod. |
2780 | StartHttpRequest(m_localID, m_itemID, url, param, body); | 2780 | StartHttpRequest(m_localID, m_itemID, url, param, body); |
2781 | 2781 | ||
2782 | if (reqID != null) | 2782 | if (!reqID.Equals(null)) |
2783 | return reqID.ToString(); | 2783 | return reqID.ToString(); |
2784 | else | 2784 | else |
2785 | return null; | 2785 | return null; |