Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Swaney <sswaney@centurytel.net>2007-08-17 17:53:09 +0400
committerStephen Swaney <sswaney@centurytel.net>2007-08-17 17:53:09 +0400
commit7f3b967c30bb30b120ef51b1633e9477325f1993 (patch)
treed605b36dde99c52b92a9283f63a266ff3b72a0a9 /source/blender/python/api2_2x/rgbTuple.c
parent400d77bbe29ddecaaa4530146f07435877f9a6aa (diff)
fix warning: initialization makes integer from pointer without a cast
Diffstat (limited to 'source/blender/python/api2_2x/rgbTuple.c')
-rw-r--r--source/blender/python/api2_2x/rgbTuple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/rgbTuple.c b/source/blender/python/api2_2x/rgbTuple.c
index db92e93fdd6..862cd318ada 100644
--- a/source/blender/python/api2_2x/rgbTuple.c
+++ b/source/blender/python/api2_2x/rgbTuple.c
@@ -86,7 +86,7 @@ PyTypeObject rgbTuple_Type = {
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 */