glamor: Get rid of an extraneous ; at the end of a C source line

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
This commit is contained in:
Alan Coopersmith 2015-09-27 18:41:35 -07:00 committed by Eric Anholt
parent 10e9116b3f
commit c1f5f9022f

View File

@ -231,7 +231,7 @@ glamor_get_tex_format_type_from_pictformat_gles2(PictFormatShort format,
case PICT_b5g6r5:
*tex_format = GL_RGB;
*tex_type = GL_UNSIGNED_SHORT_5_6_5;
need_swap_rb = IS_LITTLE_ENDIAN ? 1 : 0;;
need_swap_rb = IS_LITTLE_ENDIAN ? 1 : 0;
break;
case PICT_x1b5g5r5: