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:
authorJens <info@jensverwiebe.de>2013-11-15 21:37:57 +0400
committerJens <info@jensverwiebe.de>2013-11-15 21:38:06 +0400
commita9e0f3364fd93c51bd004d46b7b859d55b20a7b8 (patch)
treef0e87de253331329659b61032ca790e6ee2306fe /source
parent53fffbafbef694a2378fbf605cc25259a3154f37 (diff)
Fix collada after git switch ( undefined build_commit_time )
Diffstat (limited to 'source')
-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 9d590968481..ee0326d5804 100644
--- a/source/blender/collada/DocumentExporter.cpp
+++ b/source/blender/collada/DocumentExporter.cpp
@@ -230,7 +230,7 @@ void DocumentExporter::exportCurrentScene(Scene *sce)
#ifdef WITH_BUILDINFO
BLI_snprintf(version_buf, sizeof(version_buf), "Blender %d.%02d.%d commit date:%s, hash:",
BLENDER_VERSION / 100, BLENDER_VERSION % 100, BLENDER_SUBVERSION,
- build_commit_date, blender_commit_time, build_hash);
+ build_commit_date, build_commit_time, build_hash);
#else
BLI_snprintf(version_buf, sizeof(version_buf), "Blender %d.%02d.%d",
BLENDER_VERSION / 100, BLENDER_VERSION % 100, BLENDER_SUBVERSION);