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:
authorCampbell Barton <ideasman42@gmail.com>2013-12-26 02:46:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-26 02:46:25 +0400
commitef9a9428a5aa5db713435bd86bbef0ddec7d99d1 (patch)
tree8d8606ed450bb96b7fd8a3ffc189d428a870fa76
parent282b99353cfd506b959aff7cbbe73c3950c2c1b5 (diff)
correction to last commit
-rw-r--r--source/blender/makesdna/intern/makesdna.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index 6e85a63f7f2..1710f9e81af 100644
--- a/source/blender/makesdna/intern/makesdna.c
+++ b/source/blender/makesdna/intern/makesdna.c
@@ -969,8 +969,8 @@ static int make_structDNA(const char *baseDirectory, FILE *file)
names = MEM_callocN(sizeof(char *) * maxnr, "names");
types = MEM_callocN(sizeof(char *) * maxnr, "types");
typelens_native = MEM_callocN(sizeof(short) * maxnr, "typelens_native");
- typelens_32 = MEM_callocN(sizeof(short) * maxnr, "typelens_64");
- typelens_64 = MEM_callocN(sizeof(short) * maxnr, "typelens_32");
+ typelens_32 = MEM_callocN(sizeof(short) * maxnr, "typelens_32");
+ typelens_64 = MEM_callocN(sizeof(short) * maxnr, "typelens_64");
structs = MEM_callocN(sizeof(short *) * maxnr, "structs");
/* insertion of all known types */