[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [19555] trunk/blender/source/blender/ python/api2_2x/bpy_internal_import.c: cast needed to get things compiling again on my machine.

Kent Mein mein at cs.umn.edu
Mon Apr 6 03:43:06 CEST 2009


Revision: 19555
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19555
Author:   sirdude
Date:     2009-04-06 03:43:01 +0200 (Mon, 06 Apr 2009)

Log Message:
-----------
cast needed to get things compiling again on my machine.

Kent

Modified Paths:
--------------
    trunk/blender/source/blender/python/api2_2x/bpy_internal_import.c

Modified: trunk/blender/source/blender/python/api2_2x/bpy_internal_import.c
===================================================================
--- trunk/blender/source/blender/python/api2_2x/bpy_internal_import.c	2009-04-06 00:43:59 UTC (rev 19554)
+++ trunk/blender/source/blender/python/api2_2x/bpy_internal_import.c	2009-04-06 01:43:01 UTC (rev 19555)
@@ -40,7 +40,7 @@
 static void free_compiled_text(Text *text)
 {
 	if(text->compiled) {
-		Py_DECREF(text->compiled);
+		Py_DECREF(( PyObject * )text->compiled);
 	}
 	text->compiled= NULL;
 }





More information about the Bf-blender-cvs mailing list