Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorgaiaclary <gaia.clary@machinimatrix.org>2014-08-25 21:25:24 +0400
committergaiaclary <gaia.clary@machinimatrix.org>2014-08-25 21:25:24 +0400
commit33a54422b1e1b2616591ebc3442fee762596f5bd (patch)
treeb0000e9a70bd07c3afe1075220ec4d2dc79302f9 /source
parent0fc240dadb21652b4fed6d21dd4044ee71daede2 (diff)
Simplified Collada error message for unknown references.
Diffstat (limited to 'source')
-rw-r--r--source/blender/collada/DocumentImporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/DocumentImporter.cpp b/source/blender/collada/DocumentImporter.cpp
index cd006a4bec9..8101e579098 100644
--- a/source/blender/collada/DocumentImporter.cpp
+++ b/source/blender/collada/DocumentImporter.cpp
@@ -488,7 +488,7 @@ void DocumentImporter::report_unknown_reference(const COLLADAFW::Node &node, con
std::string id = node.getOriginalId();
std::string name = node.getName();
fprintf(stderr,
- "<node id=\"%s\", name=\"%s\" >...contains a reference to an unknown %s.\n",
+ "error: node id=\"%s\", name=\"%s\" refers to an undefined %s.\n",
id.c_str(),
name.c_str(),
object_type.c_str());