From 18a1e17a203444c78d1f6537870a5d7f1ad03aae Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Thu, 9 Jan 2014 20:34:02 +0100 Subject: [PATCH] OpenCollada: Fix error in printf-format (too much arguments). --- 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 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