[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11637] trunk/blender/source/blender/ python/api2_2x/rgbTuple.c: fix warning: initialization makes integer from pointer without a cast

Stephen Swaney sswaney at centurytel.net
Fri Aug 17 15:53:10 CEST 2007


Revision: 11637
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11637
Author:   stiv
Date:     2007-08-17 15:53:09 +0200 (Fri, 17 Aug 2007)

Log Message:
-----------
fix warning: initialization makes integer from pointer without a cast

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

Modified: trunk/blender/source/blender/python/api2_2x/rgbTuple.c
===================================================================
--- trunk/blender/source/blender/python/api2_2x/rgbTuple.c	2007-08-17 11:23:48 UTC (rev 11636)
+++ trunk/blender/source/blender/python/api2_2x/rgbTuple.c	2007-08-17 13:53:09 UTC (rev 11637)
@@ -86,7 +86,7 @@
 	PyObject_HEAD_INIT( NULL ) 
 	0,	/* ob_size */
 	"rgbTuple",		/* tp_name */
-	NULL,			/* tp_basicsize */
+	0,			/* tp_basicsize */
 	0,			/* tp_itemsize */
 	/* methods */
 	( destructor )PyObject_Del,		/* tp_dealloc */





More information about the Bf-blender-cvs mailing list