[Bf-blender-cvs] [ef9a942] master: correction to last commit

Campbell Barton noreply at git.blender.org
Wed Dec 25 23:46:49 CET 2013


Commit: ef9a9428a5aa5db713435bd86bbef0ddec7d99d1
Author: Campbell Barton
Date:   Thu Dec 26 09:46:25 2013 +1100
https://developer.blender.org/rBef9a9428a5aa5db713435bd86bbef0ddec7d99d1

correction to last commit

===================================================================

M	source/blender/makesdna/intern/makesdna.c

===================================================================

diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index 6e85a63..1710f9e 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 */




More information about the Bf-blender-cvs mailing list