summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2015-09-27 18:41:35 -0700
committerEric Anholt <eric@anholt.net>2015-10-19 00:04:00 -0700
commit742700f8616847ebb92cc1bcabcbcde2fd6f0ad3 (patch)
tree6c50ac1913bd613a8a0dbccd79f7f7800998791c
parentb4dd3bc4caec2d72752536aafeb960998b5fa8a5 (diff)
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> (cherry picked from commit c1f5f9022f31ca4d662cc125fa80cb25386da6d1)
-rw-r--r--glamor/glamor_picture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glamor/glamor_picture.c b/glamor/glamor_picture.c
index adeef5816..0fd1054b7 100644
--- a/glamor/glamor_picture.c
+++ b/glamor/glamor_picture.c
@@ -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: