diff options
author | Justin Clark-Casey (justincc) | 2010-08-19 00:54:09 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-08-19 00:54:09 +0100 |
commit | 85f448642b411b8fd39aee4283e9b484378336d0 (patch) | |
tree | f5bcdc7ba5daf9c17e8b102ce082280b2e76b33a /OpenSim | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-85f448642b411b8fd39aee4283e9b484378336d0.zip opensim-SC_OLD-85f448642b411b8fd39aee4283e9b484378336d0.tar.gz opensim-SC_OLD-85f448642b411b8fd39aee4283e9b484378336d0.tar.bz2 opensim-SC_OLD-85f448642b411b8fd39aee4283e9b484378336d0.tar.xz |
minor: Correct string format in "Can't find linkset root prim" message
Diffstat (limited to 'OpenSim')
-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 9963225..4d84018 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -2165,7 +2165,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2165 | 2165 | ||
2166 | if (root == null) | 2166 | if (root == null) |
2167 | { | 2167 | { |
2168 | m_log.DebugFormat("[LINK]: Can't find linkset root prim {0{", parentPrimId); | 2168 | m_log.DebugFormat("[LINK]: Can't find linkset root prim {0}", parentPrimId); |
2169 | return; | 2169 | return; |
2170 | } | 2170 | } |
2171 | 2171 | ||