From d287ea986fc6d3199b98e4d3a054709de530140c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 13 Mar 2015 09:05:30 +0100 Subject: [PATCH] nghttp2.h: remove trailing comma last in enum ... since gcc -pedantic warns on it. --- 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 51a4a30a..38b2c9f5 100644 --- a/lib/includes/nghttp2/nghttp2.h +++ b/lib/includes/nghttp2/nghttp2.h @@ -689,7 +689,7 @@ typedef enum { * trailer header fields with `nghttp2_submit_request()` or * `nghttp2_submit_response()`. */ - NGHTTP2_DATA_FLAG_NO_END_STREAM = 0x02, + NGHTTP2_DATA_FLAG_NO_END_STREAM = 0x02 } nghttp2_data_flag; /**