From e8ca11274933ff91ff81ab0473c3bd4ca77359e0 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 3 Sep 2013 16:41:45 +0200 Subject: [PATCH] nghttp2.h: avoid compiler warnings due to comma after last enum warning: comma at end of enumerator list [-Werror=pedantic] --- lib/includes/nghttp2/nghttp2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/includes/nghttp2/nghttp2.h b/lib/includes/nghttp2/nghttp2.h index eaeac330..f1069ba6 100644 --- a/lib/includes/nghttp2/nghttp2.h +++ b/lib/includes/nghttp2/nghttp2.h @@ -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; /**