From: Brian Paul Date: Sun, 31 Oct 2004 18:54:10 +0000 (+0000) Subject: added a cast to ADD_POINTERS macro X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a196565e04d1aa82b71c2ba3fb67be518b22f908;p=mesa.git added a cast to ADD_POINTERS macro --- diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 86480c82b1d..a928b20ad56 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -100,7 +100,7 @@ extern "C" { * this macro. * Both pointers/offsets are expressed in bytes. */ -#define ADD_POINTERS(A, B) ( (A) + (unsigned long) (B) ) +#define ADD_POINTERS(A, B) ( (GLubyte *) (A) + (unsigned long) (B) ) /**********************************************************************/