From eee3fc4fd748b4c66e1b416aa30bbed53bda76a3 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 11 Mar 2012 19:19:42 -0700 Subject: [PATCH] Removed commas at end of last entries in enums. --- libguac/include/protocol.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libguac/include/protocol.h b/libguac/include/protocol.h index c7f23ddd..fd64b773 100644 --- a/libguac/include/protocol.h +++ b/libguac/include/protocol.h @@ -90,7 +90,7 @@ typedef enum guac_composite_mode { GUAC_COMP_IN = 0x4, /* 0100 */ GUAC_COMP_OUT = 0x8, /* 1000 */ GUAC_COMP_RATOP = 0x9, /* 1001 */ - GUAC_COMP_SRC = 0xC, /* 1100 */ + GUAC_COMP_SRC = 0xC /* 1100 */ /* Bitwise composite operations (binary) */ @@ -158,7 +158,7 @@ typedef enum guac_transfer_function { typedef enum guac_line_cap_style { GUAC_LINE_CAP_BUTT = 0x0, GUAC_LINE_CAP_ROUND = 0x1, - GUAC_LINE_CAP_SQUARE = 0x2, + GUAC_LINE_CAP_SQUARE = 0x2 } guac_line_cap_style; /** @@ -167,7 +167,7 @@ typedef enum guac_line_cap_style { typedef enum guac_line_join_style { GUAC_LINE_JOIN_BEVEL = 0x0, GUAC_LINE_JOIN_MITRE = 0x1, - GUAC_LINE_JOIN_ROUND = 0x2, + GUAC_LINE_JOIN_ROUND = 0x2 } guac_line_join_style; typedef struct guac_layer guac_layer;