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-01-08 13:47:35 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-01-08 13:47:35 +0300
commit68b4c57ba5cd231694b0d9b4572a4e1b364f5055 (patch)
tree0cc783cf0a4fb6999eca193a38e72bbccb60ddd0 /source/blender/makesdna/intern
parentf2d2bafe8569188d00d5f68da296bd3279e2b243 (diff)
parent1e386d98ced39c181f7331550028474716ab48b3 (diff)
Merge branch 'blender2.7'
Diffstat (limited to 'source/blender/makesdna/intern')
-rw-r--r--source/blender/makesdna/intern/makesdna.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index 72d65120de2..a2c211826ee 100644
--- a/source/blender/makesdna/intern/makesdna.c
+++ b/source/blender/makesdna/intern/makesdna.c
@@ -1208,7 +1208,9 @@ static int make_structDNA(const char *baseDirectory, FILE *file, FILE *file_offs
static void make_bad_file(const char *file, int line)
{
FILE *fp = fopen(file, "w");
- fprintf(fp, "#error \"Error! can't make correct DNA.c file from %s:%d, STUPID!\"\n", __FILE__, line);
+ fprintf(fp,
+ "#error \"Error! can't make correct DNA.c file from %s:%d, check alignment.\"\n",
+ __FILE__, line);
fclose(fp);
}