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_x86.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/drivers/dri/r200/r200_vtxfmt_x86.c') diff --git a/src/mesa/drivers/dri/r200/r200_vtxfmt_x86.c b/src/mesa/drivers/dri/r200/r200_vtxfmt_x86.c index 3333178183..b78a55c31f 100644 --- a/src/mesa/drivers/dri/r200/r200_vtxfmt_x86.c +++ b/src/mesa/drivers/dri/r200/r200_vtxfmt_x86.c @@ -305,14 +305,14 @@ struct dynfn *r200_makeX86Color4ub( GLcontext *ctx, const int *key ) return dfn; } else - return 0; + return NULL; } struct dynfn *r200_makeX86Color3fv( 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); @@ -325,7 +325,7 @@ struct dynfn *r200_makeX86Color3fv( GLcontext *ctx, const int *key ) struct dynfn *r200_makeX86Color3f( 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