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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-02-22 17:52:42 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-02-22 17:53:22 +0300
commit3b86c99260bcd24bece6310ba711d656a866c2d1 (patch)
treea10c33413c50f804ffc4eef3f093d13a2008d7c8 /source/creator
parent427f3978e1fe0f7d477f13f095450dd883cb5947 (diff)
Fix previous commit
Somehow quote got missing the last moment.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator_args.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator_args.c b/source/creator/creator_args.c
index 676bb036b90..a7c906bfefd 100644
--- a/source/creator/creator_args.c
+++ b/source/creator/creator_args.c
@@ -468,7 +468,7 @@ static void print_version_short(void)
#ifdef BUILD_DATE
/* NOTE: We include built time since sometimes we need to tell broken from
* working built of the same hash. */
- printf(BLEND_VERSION_FMT " (hash %s built %s %s)\n
+ printf(BLEND_VERSION_FMT " (hash %s built %s %s)\n",
BLEND_VERSION_ARG, build_hash, build_date, build_time);
#else
printf(BLEND_VERSION_STRING_FMT);