Fix GCC when use -Wpedantic

nghttp2_stream.h:94:43: error: comma at end of enumerator list [-Werror=pedantic]
This commit is contained in:
Alexis La Goutte 2014-04-30 16:37:29 +02:00
parent 0f5c28ac46
commit 763cdc3499
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ typedef enum {
NGHTTP2_STREAM_FLAG_DEFERRED_USER = 0x08,
/* bitwise OR of NGHTTP2_STREAM_FLAG_DEFERRED_FLOW_CONTROL and
NGHTTP2_STREAM_FLAG_DEFERRED_USER. */
NGHTTP2_STREAM_FLAG_DEFERRED_ALL = 0x0c,
NGHTTP2_STREAM_FLAG_DEFERRED_ALL = 0x0c
} nghttp2_stream_flag;