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
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2017-06-25 14:18:21 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2017-06-25 14:18:21 +0300
commitfcb8761966bd7bb15b4051a3dec513d10aaf627d (patch)
tree4bb4a7539f83b1b462428e4358c645ed351ae169 /source/blender/collada
parent1340c7bcdcf4cdbfc2ddcc6220ffa2b3d8d6fcba (diff)
fix: Collada fprintf needs std::string be converted to char *
Diffstat (limited to 'source/blender/collada')
-rw-r--r--source/blender/collada/GeometryExporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/GeometryExporter.cpp b/source/blender/collada/GeometryExporter.cpp
index ce6af20817c..2586b0c0b3e 100644
--- a/source/blender/collada/GeometryExporter.cpp
+++ b/source/blender/collada/GeometryExporter.cpp
@@ -518,7 +518,7 @@ void GeometryExporter::createPolylist(std::string imageid,
// no faces using this imageid
if (faces_in_polylist == 0) {
if (imageid != "")
- fprintf(stderr, "%s: Image %s is not used.\n", id_name(ob).c_str(), imageid);
+ fprintf(stderr, "%s: Image %s is not used.\n", id_name(ob).c_str(), imageid.c_str());
return;
}