[Bf-blender-cvs] [b0ab91c] master: Code cleanup: fix type in malloc id string

Sergey Sharybin noreply at git.blender.org
Sun Jan 5 12:38:56 CET 2014


Commit: b0ab91c0a4011f8e291aae7be2e03dffc5e2a6e6
Author: Sergey Sharybin
Date:   Sun Jan 5 17:13:18 2014 +0600
https://developer.blender.org/rBb0ab91c0a4011f8e291aae7be2e03dffc5e2a6e6

Code cleanup: fix type in malloc id string

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

M	source/blender/blenkernel/intern/library.c

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

diff --git a/source/blender/blenkernel/intern/library.c b/source/blender/blenkernel/intern/library.c
index 9fa9ce6f..821df59 100644
--- a/source/blender/blenkernel/intern/library.c
+++ b/source/blender/blenkernel/intern/library.c
@@ -1015,7 +1015,7 @@ void BKE_libblock_free_us(ListBase *lb, void *idv)      /* test users */
 Main *BKE_main_new(void)
 {
 	Main *bmain = MEM_callocN(sizeof(Main), "new main");
-	bmain->eval_ctx = MEM_callocN(sizeof(EvaluationContext), "EvaluationCintext");
+	bmain->eval_ctx = MEM_callocN(sizeof(EvaluationContext), "EvaluationContext");
 	return bmain;
 }




More information about the Bf-blender-cvs mailing list