From a79e10157dc7a1c8a102bf88f236d325ecdd8d80 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 22 Mar 2013 05:34:10 +0000 Subject: code cleanup: use NULL rather then 0 for pointers, and make vars static where possible. also found unintentionally defined enum/struct variables that where only meant to be defining the type. --- intern/raskter/raskter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern') diff --git a/intern/raskter/raskter.c b/intern/raskter/raskter.c index 21153082324..4f65f877316 100644 --- a/intern/raskter/raskter.c +++ b/intern/raskter/raskter.c @@ -420,7 +420,7 @@ int PLX_raskterize(float(*base_verts)[2], int num_base_verts, { int i; /* i: Loop counter. */ struct PolyVert *ply; /* ply: Pointer to a list of integer buffer-space vertex coordinates. */ - struct r_FillContext ctx = {0}; + struct r_FillContext ctx = {NULL}; const float buf_x_f = (float)(buf_x); const float buf_y_f = (float)(buf_y); /* -- cgit v1.2.3