nghttp2.h: avoid compiler warnings due to comma after last enum

warning: comma at end of enumerator list [-Werror=pedantic]
This commit is contained in:
Daniel Stenberg 2013-09-03 16:41:45 +02:00 committed by Tatsuhiro Tsujikawa
parent 7a9cff9b5a
commit e8ca112749
1 changed files with 1 additions and 1 deletions

View File

@ -524,7 +524,7 @@ typedef enum {
* The HEADERS frame which does not apply for the above categories,
* which is analogous to HEADERS in SPDY.
*/
NGHTTP2_HCAT_HEADERS = 3,
NGHTTP2_HCAT_HEADERS = 3
} nghttp2_headers_category;
/**