gbm: don't return void

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
This commit is contained in:
coypu 2019-04-07 23:31:37 +03:00 committed by Kristian H. Kristensen
parent 7a7f182dac
commit 976004d0e7
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ swrast_put_image(__DRIdrawable *driDrawable,
char *data,
void *loaderPrivate)
{
return swrast_put_image2(driDrawable, op, x, y, width, height,
swrast_put_image2(driDrawable, op, x, y, width, height,
width * 4, data, loaderPrivate);
}