mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-21 20:40:36 +02:00
trident: Fix signedness warning.
This commit is contained in:
parent
0cb295584f
commit
e7ee7a549d
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue