gallium: remove incorrect 'return' stmt

This commit is contained in:
Brian Paul 2009-09-16 08:59:32 -06:00
parent c29905aa31
commit aabcc6cb23
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ static INLINE void
pipe_transfer_destroy( struct pipe_transfer *transf )
{
struct pipe_screen *screen = transf->texture->screen;
return screen->tex_transfer_destroy(transf);
screen->tex_transfer_destroy(transf);
}
#ifdef __cplusplus