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:
authorCampbell Barton <ideasman42@gmail.com>2013-08-07 07:36:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-07 07:36:05 +0400
commitf97a4bd25458fdc8da1a97f7b68a305c8ab35ff4 (patch)
tree833fde5e6a46028fb9cebf1234cca6956bb6099b /source/blender/blenlib/intern/voronoi.c
parentc2ad963e2877851a02f2aa7355751733867bd87c (diff)
code cleanup: more zero as NULL pointers.
Diffstat (limited to 'source/blender/blenlib/intern/voronoi.c')
-rw-r--r--source/blender/blenlib/intern/voronoi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/voronoi.c b/source/blender/blenlib/intern/voronoi.c
index 7a545090090..3f6adff1eda 100644
--- a/source/blender/blenlib/intern/voronoi.c
+++ b/source/blender/blenlib/intern/voronoi.c
@@ -121,7 +121,7 @@ static VoronoiParabola *voronoiParabola_new(void)
parabola->is_leaf = FALSE;
parabola->event = NULL;
parabola->edge = NULL;
- parabola->parent = 0;
+ parabola->parent = NULL;
return parabola;
}
@@ -134,7 +134,7 @@ static VoronoiParabola *voronoiParabola_newSite(float site[2])
parabola->is_leaf = TRUE;
parabola->event = NULL;
parabola->edge = NULL;
- parabola->parent = 0;
+ parabola->parent = NULL;
return parabola;
}