diff options
author | Justin Clark-Casey (justincc) | 2010-08-19 00:54:09 +0100 |
---|---|---|
committer | Diva Canto | 2010-08-19 21:22:44 -0700 |
commit | f64358dadf2e89c41476dbab477596aeae0edf74 (patch) | |
tree | cb91fdab7cd0d597f6455e5a20aa55965c2d1be9 | |
parent | Line endings again. (diff) | |
download | opensim-SC_OLD-f64358dadf2e89c41476dbab477596aeae0edf74.zip opensim-SC_OLD-f64358dadf2e89c41476dbab477596aeae0edf74.tar.gz opensim-SC_OLD-f64358dadf2e89c41476dbab477596aeae0edf74.tar.bz2 opensim-SC_OLD-f64358dadf2e89c41476dbab477596aeae0edf74.tar.xz |
minor: Correct string format in "Can't find linkset root prim" message
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index d79a7f1..897e52e 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -2169,7 +2169,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2169 | 2169 | ||
2170 | if (root == null) | 2170 | if (root == null) |
2171 | { | 2171 | { |
2172 | m_log.DebugFormat("[LINK]: Can't find linkset root prim {0{", parentPrimId); | 2172 | m_log.DebugFormat("[LINK]: Can't find linkset root prim {0}", parentPrimId); |
2173 | return; | 2173 | return; |
2174 | } | 2174 | } |
2175 | 2175 | ||