From a9e0f3364fd93c51bd004d46b7b859d55b20a7b8 Mon Sep 17 00:00:00 2001 From: Jens Date: Fri, 15 Nov 2013 18:37:57 +0100 Subject: [PATCH] Fix collada after git switch ( undefined build_commit_time ) --- source/blender/collada/DocumentExporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);