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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-01-09 23:34:02 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-01-09 23:35:20 +0400
commit18a1e17a203444c78d1f6537870a5d7f1ad03aae (patch)
tree8fa0f533bc248ff603447ff9229c1a02bab6449b /source/blender/collada/DocumentExporter.cpp
parent06d70c7798c7909a15a3c8cae3f6f365f8b85455 (diff)
OpenCollada: Fix error in printf-format (too much arguments).
Diffstat (limited to 'source/blender/collada/DocumentExporter.cpp')
-rw-r--r--source/blender/collada/DocumentExporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/DocumentExporter.cpp b/source/blender/collada/DocumentExporter.cpp
index ee0326d5804..7398126c97b 100644
--- a/source/blender/collada/DocumentExporter.cpp
+++ b/source/blender/collada/DocumentExporter.cpp
@@ -228,7 +228,7 @@ void DocumentExporter::exportCurrentScene(Scene *sce)
}
char version_buf[128];
#ifdef WITH_BUILDINFO
- BLI_snprintf(version_buf, sizeof(version_buf), "Blender %d.%02d.%d commit date:%s, hash:",
+ BLI_snprintf(version_buf, sizeof(version_buf), "Blender %d.%02d.%d commit date:%s, commit time:%s, hash:%s",
BLENDER_VERSION / 100, BLENDER_VERSION % 100, BLENDER_SUBVERSION,
build_commit_date, build_commit_time, build_hash);
#else