From ef9a9428a5aa5db713435bd86bbef0ddec7d99d1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 26 Dec 2013 09:46:25 +1100 Subject: correction to last commit --- source/blender/makesdna/intern/makesdna.c | 4 ++-- 1 file 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 */ -- cgit v1.2.3