Fix GCC when use -Wpedantic

nghttp2_int.h:50:33: error: comma at end of enumerator list [-Werror=pedantic]
This commit is contained in:
Alexis La Goutte 2014-04-30 16:34:39 +02:00
parent 660c536275
commit 941236948f
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ typedef enum {
NGHTTP2_ERR_CREDENTIAL_PENDING = -101,
NGHTTP2_ERR_BUFFER_ERROR = -102,
NGHTTP2_ERR_IGN_HEADER_BLOCK = -103,
NGHTTP2_ERR_IGN_PAYLOAD = -104,
NGHTTP2_ERR_IGN_PAYLOAD = -104
} nghttp2_internal_error;
#endif /* NGHTTP2_INT_H */