Fix nghttp2_hd_huffman.h:41:31: warning: comma at end of enumerator list [-Wpedantic]

This commit is contained in:
Alexis La Goutte 2014-06-11 09:14:19 +02:00 committed by Tatsuhiro Tsujikawa
parent 9b174bf5c9
commit a15d4fc306
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ typedef enum {
/* This state emits symbol */
NGHTTP2_HUFF_SYM = (1 << 1),
/* If state machine reaches this state, decoding fails. */
NGHTTP2_HUFF_FAIL = (1 << 2),
NGHTTP2_HUFF_FAIL = (1 << 2)
} nghttp2_huff_decode_flag;
typedef struct {