trident: Fix signedness warning.

This commit is contained in:
Eric Anholt 2009-02-10 14:24:06 -08:00
parent 0cb295584f
commit e7ee7a549d

View file

@ -402,7 +402,7 @@ void tridentInitVB( GLcontext *ctx )
tridentContextPtr tmesa = TRIDENT_CONTEXT(ctx);
GLuint size = TNL_CONTEXT(ctx)->vb.Size;
tmesa->verts = (char *)ALIGN_MALLOC( size * 16 * 4, 32 );
tmesa->verts = (GLubyte *)ALIGN_MALLOC( size * 16 * 4, 32 );
{
static int firsttime = 1;