diff options
author | Eric Anholt <[email protected]> | 2009-02-10 14:24:06 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2009-02-10 18:45:18 -0800 |
commit | e7ee7a549d9250b0020b2773f5146d2e1197c231 (patch) | |
tree | 76ef751366beee6bf8a6fca54559e872b08750f3 /src | |
parent | 0cb295584ff2e3d442029fe9e079f69fafaf8dd9 (diff) |
trident: Fix signedness warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/trident/trident_vb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/trident/trident_vb.c b/src/mesa/drivers/dri/trident/trident_vb.c index b231f5ef15e..055a9145953 100644 --- a/src/mesa/drivers/dri/trident/trident_vb.c +++ b/src/mesa/drivers/dri/trident/trident_vb.c @@ -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; |