From 0846e52d46b36c411f79908df010072e03bb6437 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 17 Feb 2005 14:12:50 +0000 Subject: s/0/NULL/ (Jeff Muizelaar) --- src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c') diff --git a/src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c b/src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c index 45950159f2..5901730494 100644 --- a/src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c +++ b/src/mesa/drivers/dri/r200/r200_vtxfmt_sse.c @@ -131,7 +131,7 @@ static struct dynfn *r200_makeSSENormal3f( GLcontext *ctx, const int * key ) static struct dynfn *r200_makeSSEColor3fv( GLcontext *ctx, const int * key ) { if (VTX_COLOR(key[0],0) != R200_VTX_FP_RGB) - return 0; + return NULL; else { r200ContextPtr rmesa = R200_CONTEXT(ctx); @@ -144,7 +144,7 @@ static struct dynfn *r200_makeSSEColor3fv( GLcontext *ctx, const int * key ) static struct dynfn *r200_makeSSEColor3f( GLcontext *ctx, const int * key ) { if (VTX_COLOR(key[0],0) != R200_VTX_FP_RGB) - return 0; + return NULL; else { r200ContextPtr rmesa = R200_CONTEXT(ctx); -- cgit v1.2.3